feat: added Segment

This commit is contained in:
원더 2021-01-07 14:57:55 +09:00
parent 63d112cdb2
commit 1c48843b3d

7
components/Segment.tsx Normal file
View File

@ -0,0 +1,7 @@
const Segment = ({ children }):JSX.Element => {
return <div className='bg-little-white dark:bg-discord-black text-black dark:text-white p-5 rounded-sm'>
{children}
</div>
}
export default Segment