/** * Copyright (c) 2021 lingdocs.com * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import React, { useState } from "react"; // eslint-disable-next-line import { BrowserRouter as Router, Route, withRouter, Switch } from "react-router-dom"; import "./App.css"; import Page404 from "./pages/404"; import Chapter from "./components/Chapter"; import { content } from "./content/index"; import Sidebar from "./components/Sidebar"; import Header from "./components/Header"; import TableOfContentsPage from "./pages/TableOfContentsPage"; import { useEffect } from "react"; const chapters = content.reduce((chapters, item) => ( item.content ? [...chapters, item] : [...chapters, ...item.chapters] ), []); function App(props) { const [navOpen, setNavOpen] = useState(false); useEffect(() => { window.scroll(0, 0); }, [props.location.pathname]); return ( <>
{chapters.map((chapter) => ( {chapter} ))}
); } export default withRouter(App);