You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import "./style.css";
|
|
|
|
export default function LayoutDefault({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<div
|
|
css={{
|
|
display: "flex",
|
|
maxWidth: 1024,
|
|
margin: "auto",
|
|
}}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|