8 lines
299 B
TypeScript
8 lines
299 B
TypeScript
export default function ReadSectionLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="min-h-screen bg-gradient-to-b from-slate-300 to-fuchsia-100 dark:from-black dark:to-fuchsia-900 text-black dark:text-white">
|
|
{ children }
|
|
</div>
|
|
)
|
|
}
|