Skip to content

Commit

Permalink
Dedupe
Browse files Browse the repository at this point in the history
  • Loading branch information
brijeshb42 committed Jul 9, 2024
1 parent 33eb3e7 commit 85bc8e0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 158 deletions.
4 changes: 3 additions & 1 deletion apps/pigment-css-next-app/src/app/material-ui/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import path from 'path';
import { css } from '@mui/material-pigment-css';

export default async function MaterialUIPage() {
const rootPaths = await fs.readdir(path.join(process.cwd(), `src/app/material-ui`));
const rootPaths = (await fs.readdir(path.join(process.cwd(), `src/app/material-ui`))).filter(
(path) => !path.startsWith('.'),
);
return (
<div>
<h1>Material UI Components</h1>
Expand Down
Loading

0 comments on commit 85bc8e0

Please sign in to comment.