mirror of
https://github.com/cupcakearmy/fantus.git
synced 2024-11-01 13:04:34 +01:00
13 lines
265 B
TypeScript
13 lines
265 B
TypeScript
|
import React from 'react'
|
||
|
|
||
|
import '../styles/content.styl'
|
||
|
|
||
|
const Content: React.FC = ({ children }) => {
|
||
|
return <div className='container'>
|
||
|
{/* <div className='content'> */}
|
||
|
{children}
|
||
|
{/* </div> */}
|
||
|
</div>
|
||
|
}
|
||
|
|
||
|
export default Content
|