import React, { createContext, useRef, useState } from 'react'; import ReactDom from 'react-dom'; import {BrowserRouter, Route, Switch as RouterSwitch} from 'react-router-dom'; import { Gallery, ContentAbout} from './page/mod'; import {BackLinkContext} from './state'; import './css/style.css'; const FooProfile = ()=>
test profile
; const App = () => { const [path,setPath] = useState("/"); return ( }> }> }>
404 Not Found
); }; ReactDom.render( , document.getElementById("root") )