├── src ├── constants.ts ├── components │ ├── node │ │ ├── styles.css │ │ └── index.tsx │ ├── container │ │ ├── styles.css │ │ └── index.tsx │ └── template │ │ ├── styles.css │ │ └── index.tsx ├── pages │ ├── root │ │ ├── styles.css │ │ ├── index.tsx │ │ └── reset.css │ └── example-page │ │ ├── styles.css │ │ └── index.tsx ├── index.tsx └── routes.tsx ├── .gitignore ├── index.html ├── backup ├── webpack ├── dev.config.js └── webpack.config.js ├── README.md ├── tsconfig.json └── package.json /src/constants.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /src/components/node/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/container/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/template/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/root/styles.css: -------------------------------------------------------------------------------- 1 | pre { 2 | font-size: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- 1 | import Inferno from 'inferno' 2 | import { routes } from './routes' 3 | 4 | Inferno.render(routes, document.getElementById('inferno')) 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |