Skip to content

Commit f54b6ff

Browse files
committed
chore: rebase
1 parent 708eb52 commit f54b6ff

File tree

29 files changed

+87
-16
lines changed

29 files changed

+87
-16
lines changed

examples/react-component-bundle-false/src/CounterButton.tsx renamed to examples/react-component-bundle-false/src/components/CounterButton/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import styles from './CounterButton.module.scss';
1+
import styles from './index.module.scss';
22
interface CounterButtonProps {
33
onClick: () => void;
44
label: string;

examples/react-component-bundle-false/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { CounterButton } from './CounterButton';
1+
import { CounterButton } from './components/CounterButton';
22
import { useCounter } from './useCounter';
33
import './index.scss';
44

examples/react-component-bundle/src/CounterButton.tsx renamed to examples/react-component-bundle/src/components/CounterButton/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import styles from './CounterButton.module.scss';
1+
import styles from './index.module.scss';
22
interface CounterButtonProps {
33
onClick: () => void;
44
label: string;

examples/react-component-bundle/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { CounterButton } from './CounterButton';
1+
import { CounterButton } from './components/CounterButton';
22
import { useCounter } from './useCounter';
33
import './index.scss';
44

pnpm-lock.yaml

Lines changed: 83 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)