Skip to content

Commit f134894

Browse files
committed
refactor
1 parent 5d6fe58 commit f134894

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

packages/shared/src/client/demo/basic-example.tsx renamed to packages/shared/src/client/demo/basic-example/basic-example.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { CounterController, CounterDisplay } from "./counter";
2-
import styles from "./demo.module.scss";
2+
import styles from "../demo.module.scss";
33

44
export function BasicExample() {
55
return (
File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "./basic-example";

packages/shared/src/client/demo/demo.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import { BasicExample } from "./basic-example";
44
import styles from "./demo.module.scss";
5-
import basicExampleCode from "./basic-example.tsx?raw";
6-
import counterCode from "./counter.tsx?raw";
5+
import basicExampleCode from "./basic-example/basic-example.tsx?raw";
6+
import counterCode from "./basic-example/counter.tsx?raw";
77
import { CodeDisplay } from "./code-display";
88

99
const code = [

0 commit comments

Comments
 (0)