import React from "react"; import { BrowserRouter as Router, Switch, Route } from "react-router-dom"; import { Header } from "./Header/Header"; import { About } from "./About/About"; import { Mancala } from "./Mancala/Mancala"; import "./App.css"; export function App() { return ( {/* The header with navigation options is always on top of every page */}
{/* If the user goes to the url /about, show the about page */} {/* If the user goes to any other url, show the play page */}
) }