/** * * This component is the skeleton around the actual pages, and should only * contain code that should be seen on all pages. (e.g. navigation bar) * */ import React from "react"; import { Switch as WrongSwitch, Route as WrongRoute } from "react-router-dom"; import { NotFound } from "@strapi/helper-plugin"; import pluginId from "../../pluginId"; import HomePage from "../HomePage"; const Switch = WrongSwitch as any; const Route = WrongRoute as any; const App = () => { return (
); }; export default App;