UNPKG

quickbuild

Version:

A mature, feature-complete application generator with an emphasis on speed

14 lines (10 loc) 261 B
import React from 'react'; import { hot } from 'react-hot-loader/root'; import Home from './pages/Home'; import SentryBoundary from './utils/SentryBoundary'; const App = () => ( <SentryBoundary> <Home /> </SentryBoundary> ); export default hot(App);