You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example demonstrates all the pieces of Page Kit working together. It is intended to be used as a testbed for the Page Kit team to find out how packages should be composed together and try out the interfaces between them.
4
+
5
+
### Running the app
6
+
7
+
First run build at the root of the app to pick up the changes and the compiling of shared packages
8
+
9
+
```bash
10
+
npm run build
11
+
```
12
+
13
+
To start the example app enter this directory:
14
+
15
+
```bash
16
+
cd examples/kitchen-sink
17
+
```
18
+
19
+
To build the example app:
20
+
21
+
```bash
22
+
npm run build
23
+
```
24
+
25
+
Then start the app by running:
26
+
27
+
```bash
28
+
npm start
29
+
#or
30
+
npm run dev
31
+
```
32
+
33
+
Finally open `http://localhost:3456/` in your browser.
0 commit comments