Skip to content

Commit 69ff73a

Browse files
committed
scaffold examples
1 parent 40b56f7 commit 69ff73a

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { Logo } from "../common/logo";
2+
import SimpleColorSwitch from "./simple-color-switch";
3+
import ThemeSwitching from "./theme-switching";
4+
5+
export default function LibExamples() {
6+
return (
7+
<div>
8+
<h1>
9+
<Logo /> examples.
10+
</h1>
11+
<SimpleColorSwitch />
12+
<ThemeSwitching />
13+
</div>
14+
);
15+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default function SimpleColorSwitch() {
2+
return <div></div>;
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default function ThemeSwitching() {
2+
return <div></div>;
3+
}

0 commit comments

Comments
 (0)