refactor(examples): rename graph to flow

This commit is contained in:
moklick
2020-05-14 10:57:08 +02:00
parent 267187b8d1
commit 0b7354610e
7 changed files with 42 additions and 21 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ import React, { useState } from 'react';
import ReactDOM from 'react-dom';
import { BrowserRouter as Router, Route, Switch, NavLink, withRouter } from 'react-router-dom';
import Rich from './Rich';
import Overview from './Overview';
import Basic from './Basic';
import CustomNode from './CustomNode';
import Stress from './Stress';
@@ -15,7 +15,7 @@ import './index.css';
const routes = [{
path: '/',
component: Rich,
component: Overview,
label: 'Overview'
}, {
path: '/basic',