fantus/components/content.tsx

8 lines
152 B
TypeScript
Raw Permalink Normal View History

2020-01-12 17:34:14 +00:00
import React from 'react'
const Content: React.FC = ({ children }) => {
2021-02-25 10:52:09 +00:00
return <div className="container">{children}</div>
2020-01-12 17:34:14 +00:00
}
2021-02-25 10:52:09 +00:00
export default Content