Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clairefro/react-flats
Click flats and see their location on map (practice app for learning react)
https://github.com/clairefro/react-flats
Last synced: 3 days ago
JSON representation
Click flats and see their location on map (practice app for learning react)
- Host: GitHub
- URL: https://github.com/clairefro/react-flats
- Owner: clairefro
- Created: 2019-12-30T23:43:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T18:52:11.000Z (about 2 years ago)
- Last Synced: 2025-01-10T02:18:08.828Z (6 days ago)
- Language: JavaScript
- Homepage: https://clairefro.github.io/react-flats/
- Size: 2.38 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-boilerplate
Simple react starter with the following config:
- React, ReactDOM
- Webpack 4
- Babel with es2015 and react presets
- Bootstrap (css only, loaded from a cdn in `index.html`)
- work with `.js` or `.jsx` files
- main `application.scss` stylesheet is imported in `index.js` as a module to enjoy hot reloading## Scripts
To start the local Webpack Dev Server (usually on port `8080`):
```bash
yarn start
```To lint all JavaScript files in the `src` folder:
```bash
yarn lint
```To build and deploy your app to `gh-pages` branch on the GitHub repo:
```bash
yarn deploy
```