-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62f6cd5
commit 49ec897
Showing
5 changed files
with
64 additions
and
23 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export default function TestTypo() { | ||
return ( | ||
<> | ||
<h1>ู ุง ูุง ูุฏุฑู ููู ูุง ูุชุฑู ุฌูู</h1> | ||
<h2>ู ุง ูุง ูุฏุฑู ููู ูุง ูุชุฑู ุฌูู</h2> | ||
<h3>ู ุง ูุง ูุฏุฑู ููู ูุง ูุชุฑู ุฌูู</h3> | ||
<h4>ู ุง ูุง ูุฏุฑู ููู ูุง ูุชุฑู ุฌูู</h4> | ||
<h5>ู ุง ูุง ูุฏุฑู ููู ูุง ูุชุฑู ุฌูู</h5> | ||
<h6>ู ุง ูุง ูุฏุฑู ููู ูุง ูุชุฑู ุฌูู</h6> | ||
<p>ู ุง ูุง ูุฏุฑู ููู ูุง ูุชุฑู ุฌูู</p> | ||
<a href="#1">ู ุง ูุง ูุฏุฑู ููู ูุง ูุชุฑู ุฌูู</a> | ||
<p className="small">ู ุง ูุง ูุฏุฑู ููู ูุง ูุชุฑู ุฌูู</p> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// routes.jsx is the main router for the application | ||
// Will have the routes in it | ||
import { | ||
BrowserRouter as Router, | ||
Routes as Switch, | ||
Route, | ||
} from "react-router-dom"; | ||
|
||
// Import modules/pages under this line | ||
|
||
// Import Testing Routes here | ||
import TestTypo from "./components/testing/testTypo"; | ||
|
||
function Routes() { | ||
return ( | ||
<Router> | ||
<Switch> | ||
<Route exact path="/" element={<h1>Landing</h1>} /> | ||
|
||
{/* Testing Routes */} | ||
{/* FIXME: Delete test routes Later */} | ||
<Route path="/testTypo" element={<TestTypo />} /> | ||
|
||
{/* Not Found */} | ||
<Route path="*" element={<h1>Not Found</h1>} /> | ||
</Switch> | ||
</Router> | ||
); | ||
} | ||
|
||
export default Routes; |