Skip to content

Commit

Permalink
๐Ÿ› fix: gird ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
Ujaa authored Dec 4, 2024
1 parent 37a489f commit efa1280
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { PropsWithChildren } from 'react';
export const WorkspaceGrid = ({ children }: PropsWithChildren) => {
return (
<ul className="grid grid-cols-1 gap-x-6 gap-y-8 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
{children}
<li>{children}</li>
</ul>
);
};

0 comments on commit efa1280

Please sign in to comment.