https://github.com/wilmoore/react-opinionated-reference
An opinionated react reference based on my experiences working with react.
https://github.com/wilmoore/react-opinionated-reference
examples opinionated react react-examples react-opinionated-reference reactjs reference wilmoore wm3
Last synced: 4 days ago
JSON representation
An opinionated react reference based on my experiences working with react.
- Host: GitHub
- URL: https://github.com/wilmoore/react-opinionated-reference
- Owner: wilmoore
- Created: 2019-03-10T06:14:48.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-10T06:18:08.000Z (over 7 years ago)
- Last Synced: 2025-01-06T14:47:06.814Z (over 1 year ago)
- Topics: examples, opinionated, react, react-examples, react-opinionated-reference, reactjs, reference, wilmoore, wm3
- Homepage:
- Size: 0 Bytes
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# react-opinionated-reference
> An opinionated react reference based on my experiences working with react.
## Export named components
Export named components and import via destructuring.
#### inline export constant arrow function
> export constant arrow function
```
export const Hello = () =>
Hello
```
> destructured import
```
import { Hello } from '../components/hello'
```