eduproj2/components/Container.tsx
Michael Zhang ebcce28d5b wtf
2023-08-01 22:20:15 -04:00

3 lines
129 B
TypeScript

export default function Container({ children }) {
return <div style={{ margin: "0 auto", width: "980px" }}>{children}</div>;
}