UNPKG

catalyst-frontend

Version:

A configurable frontend build pipeline that caters for everything from simple SASS compilation only, right through to ES2015 plus React.

8 lines (5 loc) 224 B
<% if (options.react) { %>import React from 'react'; import { render } from 'react-dom'; import App from 'app'; <% } %>import 'index.scss';<% if (options.react) { %> render(<App />, document.getElementById('app'));<% } %>