import React from 'react'; import { useRouter } from 'next/router'; import '../styles/globals.css'; // Unfortunately this doesn't work because preconsruct clears the dist folder and there is // no way to hook into the watch process to copy the files back to the dist folder // import '@rctflw/core/dist/theme-default.css'; // this is a workaround for testing the theme. See explanation above. import '../styles/rf-style.css'; const routes = [ '/', '/Backgrounds', '/ControlledUncontrolled', '/CustomConnectionLine', '/CustomNode', '/DefaultNodes', '/DragHandle', '/DragNDrop', '/EdgeTypes', '/Edges', '/Empty', '/FloatingEdges', '/Hidden', '/Interaction', '/Layouting', '/MultiFlows', '/NestedNodes', '/NodeTypeChange', '/NodeTypesObjectChange', '/Overview', '/Provider', '/SaveRestore', '/Stress', '/Subflow', '/Switch', '/TouchDevice', '/Undirectional', '/UpdatableEdge', '/UpdateNode', '/UseKeyPress', '/UseReactFlow', '/UseUpdateNodeInternals', '/Validation', ]; function MyApp({ Component, pageProps }) { const router = useRouter(); const onRouteChange = (evt) => { router.push(evt.target.value); }; return ( <>
React Flow Dev
); } export default MyApp;