type props = { children: React.ReactNode; }; export function ProjectsColumns({ children }: props) { return (
{children}
); }