mirror of
https://github.com/fergalmoran/supanextail.git
synced 2026-01-04 15:44:12 +00:00
Blog V1 (functionnal)
Need to clean TS code / replace placeholders / Design V1 to-do
This commit is contained in:
11
components/blog/container.tsx
Normal file
11
components/blog/container.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { FunctionComponent, ReactNode } from 'react';
|
||||
|
||||
type Properties = {
|
||||
children?: ReactNode;
|
||||
};
|
||||
|
||||
const Container: FunctionComponent = ({ children }: Properties) => {
|
||||
return <div className="container mx-auto px-5">{children}</div>;
|
||||
};
|
||||
|
||||
export default Container;
|
||||
Reference in New Issue
Block a user