mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
12 lines
269 B
TypeScript
12 lines
269 B
TypeScript
import { FunctionComponent, ReactNode } from 'react';
|
|
|
|
type Properties = {
|
|
children?: ReactNode;
|
|
};
|
|
|
|
const Container: FunctionComponent = ({ children }: Properties) => {
|
|
return <div className="container mx-auto p-10">{children}</div>;
|
|
};
|
|
|
|
export default Container;
|