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