import React, { useState } from 'react'; import { hot } from 'react-hot-loader'; import logo from '@assets/images/logo.png'; import './Application.less'; const Application: React.FC = () => { const [counter, setCounter] = useState(0); return (

ERWT Boilerplate

Minimal boilerplate for rapid development of Desktop Applications using Electron, React, Typescript and Webpack. To serve the best environment for development, it uses hot-reloading of modules, styles and layouts of project
ERWT Electron Chrome Node

For faster development experience, this application will update using Hot Reload without needing to restart/reload after code changes. Click below buttons to update the application "counter" state

     
); }; export default hot(module)(Application);