chore(examples): add overview, cleanup

This commit is contained in:
moklick
2021-12-17 10:43:53 +01:00
parent 3b25086149
commit 3206d49c15
10 changed files with 36 additions and 380 deletions
+5
View File
@@ -2,6 +2,7 @@ import { ChangeEvent } from 'react';
import ReactDOM from 'react-dom';
import { BrowserRouter as Router, Route, Switch, withRouter } from 'react-router-dom';
import Overview from './Overview';
import Basic from './Basic';
import UpdateNode from './UpdateNode';
import Stress from './Stress';
@@ -18,6 +19,10 @@ import './index.css';
const routes = [
{
path: '/',
component: Overview,
},
{
path: '/basic',
component: Basic,
},
{