aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/components/Container.tsx
blob: a6db4d8f6578cd17ff206caff8e96b85d2ec59e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
import type { ReactNode } from "react";

type Props = {
  children?: ReactNode;
};

export const Container = ({ children }: Props) => {
  return <div className="mx-auto max-w-7xl sm:px-6 lg:px-8">{children}</div>;
};