mirror of
https://github.com/gregberge/loadable-components.git
synced 2026-01-18 15:12:26 +00:00
31 lines
413 B
Markdown
31 lines
413 B
Markdown
# Get the client-side example running
|
|
|
|
Steps:
|
|
|
|
1. Download repository
|
|
|
|
```bash
|
|
git clone https://github.com/gregberge/loadable-components.git
|
|
```
|
|
|
|
2. move into example directory
|
|
|
|
```bash
|
|
cd ./loadable-components/examples/client-side
|
|
```
|
|
|
|
3. install [https://yarnpkg.com/lang/en/docs/install](yarn) if haven't already
|
|
4. install project dependencies
|
|
|
|
```bash
|
|
yarn
|
|
```
|
|
|
|
5. run
|
|
|
|
```bash
|
|
yarn dev
|
|
# or
|
|
yarn start
|
|
```
|