9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
import React from 'react';
|
|
|
|
interface MainContentProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export function MainContent({ children }: MainContentProps) {
|
|
return <div className="pt-16 md:pt-20">{children}</div>;
|
|
} |