mirror of
https://github.com/fergalmoran/radio-otherway.git
synced 2025-12-22 01:39:05 +00:00
14 lines
355 B
TypeScript
14 lines
355 B
TypeScript
import React from "react";
|
|
|
|
const RootLayout = ({ children }: React.PropsWithChildren) => {
|
|
return (
|
|
<div className="flex flex-wrap w-full justify-evenly">
|
|
<div className="max-w-lg p-10 mt-6 rounded-md shadow-md font-body bg-base-100 text-base-content md:flex-1">
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default RootLayout;
|