Skip to content

Commit

Permalink
fix(ui): update css module filename imports
Browse files Browse the repository at this point in the history
  • Loading branch information
waldronmatt committed Nov 4, 2023
1 parent 6a4ab8c commit 23a0890
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ui/lib/components/Button/button.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import styles from './button.module.css';
import styles from './Button.module.css';
// This vite config is configured to use aliases so you can do something like:
// import { Link } from '@/Link/index.js';

Expand Down
2 changes: 1 addition & 1 deletion packages/ui/lib/components/Link/link.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import styles from './link.module.css';
import styles from './Link.module.css';
// This vite config is configured to use aliases so you can do something like:
// import { Button } from '@/Button/index.js';

Expand Down

0 comments on commit 23a0890

Please sign in to comment.