Commit 1e999cb6 authored by Arrr's avatar Arrr
Browse files

Commiting changes With this account

parent c17615c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
travelerschosen.org
 No newline at end of file
www.travelerschosen.org
 No newline at end of file
+5 −1
Original line number Diff line number Diff line
import { HashRouter, Routes, Route, useLocation } from "react-router-dom";
import Navbar from "./components/Navbar";
import About from "./about";
import About from "./components/pages/about";
import QueueHelper from "./components/pages/queuehelper";
import Homepage from "./components/pages/homepage";
import CheckpointList from "./components/pages/checkpointlist";
import TwitchBots from "./components/pages/twitchbots";
import FAQ from "./components/pages/FAQ"
import NEW from "./components/pages/queuehelperNEW"

function App() {
    return (
@@ -14,9 +16,11 @@ function App() {
                <Route path="/" element={<Homepage />} />
                <Route path="/about" element={<About />} />
                <Route path="/queuehelper" element={<QueueHelper />} />
                {/*<Route path="/queuehelperNEW" element={<NEW />} />*/}
                {/* Wrap CheckpointList in a component to force a refresh */}
                {<Route path="/checkpointlist" element={<CheckpointListWrapper />} />}
                <Route path="/twitchbots" element={<TwitchBots />} />
                <Route path="/faq" element={<FAQ />} />
            </Routes>
        </HashRouter>
    );

src/about.html

deleted100644 → 0
+0 −13
Original line number Diff line number Diff line
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Traveler's Chosen</title>
</head>
<body>
  <div id="content"></div>
  <p>Testing about HTML</p>

</body>
</html>
 No newline at end of file
+10 −0
Original line number Diff line number Diff line
import { Buttons } from "./Buttons"

export function Bots(props){
    return(
        <div>
            <h1>This is a test {props.bots} testing</h1>
            <Buttons></Buttons>
        </div>
    )
}
 No newline at end of file
+5 −0
Original line number Diff line number Diff line
export function Buttons(props){
    return(
        <button>{props.name}</button>
    )
}
 No newline at end of file
Loading