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