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