mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
function GeneralWrapperStyled({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="max-w-screen-2xl mx-auto px-16 py-5 tracking-tight z-50">
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default GeneralWrapperStyled
|