rsnext/examples/cms-sitefinity/components/container.tsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
191 B
TypeScript
Raw Normal View History

type Props = {
children?: React.ReactNode;
};
const Container = ({ children }: Props) => {
return <div className="container mx-auto px-5">{children}</div>;
};
export default Container;