10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import { PropsWithChildren } from "react";
|
|
|
|
export default function BlogLayout({ children }: PropsWithChildren) {
|
|
return (
|
|
<div className="flex flex-col items-start justify-center pt-8 pb-10 w-full mx-auto">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|