Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 14 days ago
JSON representation

An opinionated react reference based on my experiences working with react.

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'
```