6 lines
192 B
TypeScript
6 lines
192 B
TypeScript
import type { PropsWithChildren } from 'react';
|
|
|
|
export function Content({ children }: PropsWithChildren) {
|
|
return <div className="flex w-full justify-center gap-2 py-5">{children}</div>;
|
|
}
|