Added TestPanel (shoutouts to Futasuke)

This commit is contained in:
dudleycu 2021-07-23 11:33:05 +00:00
parent 51a2a0425f
commit 534dd8ba54
2 changed files with 15 additions and 0 deletions

View File

@ -11,6 +11,7 @@ import {
import { HashLink as Link } from 'react-router-hash-link'; import { HashLink as Link } from 'react-router-hash-link';
import TestPanel from './TestPanel'; // Dudley's Test Panel
const axios = require('axios'); const axios = require('axios');
@ -590,6 +591,9 @@ function App() {
<Route path="/admin"> <Route path="/admin">
<AdminPanel/> <AdminPanel/>
</Route> </Route>
<Route path="/test">
<TestPanel/>
</Route>
<Route path="/"> <Route path="/">
<div id="main"> <div id="main">
<Col> <Col>

11
src/TestPanel.js Normal file
View File

@ -0,0 +1,11 @@
import React, { Component } from 'react';
function TestPanel() {
return ( //Futasuke is a genius
<div>Twitch prime is a free sub every month. Don't waste it!!</div>
)
}
export default TestPanel;