/react-opinionated-reference

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

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 = () => <p>Hello</p>

destructured import

import { Hello } from '../components/hello'