Added TestPanel (shoutouts to Futasuke)
This commit is contained in:
parent
51a2a0425f
commit
534dd8ba54
@ -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
11
src/TestPanel.js
Normal 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;
|
Loading…
x
Reference in New Issue
Block a user