From 534dd8ba544afdc0348e8b076931b140907d261a Mon Sep 17 00:00:00 2001 From: dudleycu Date: Fri, 23 Jul 2021 11:33:05 +0000 Subject: [PATCH] Added TestPanel (shoutouts to Futasuke) --- src/App.js | 4 ++++ src/TestPanel.js | 11 +++++++++++ 2 files changed, 15 insertions(+) create mode 100644 src/TestPanel.js diff --git a/src/App.js b/src/App.js index 376770c..dbea1b2 100644 --- a/src/App.js +++ b/src/App.js @@ -11,6 +11,7 @@ import { import { HashLink as Link } from 'react-router-hash-link'; +import TestPanel from './TestPanel'; // Dudley's Test Panel const axios = require('axios'); @@ -590,6 +591,9 @@ function App() { + + +
diff --git a/src/TestPanel.js b/src/TestPanel.js new file mode 100644 index 0000000..b0c2859 --- /dev/null +++ b/src/TestPanel.js @@ -0,0 +1,11 @@ +import React, { Component } from 'react'; + +function TestPanel() { + return ( //Futasuke is a genius + +
Twitch prime is a free sub every month. Don't waste it!!
+ + ) + } + +export default TestPanel; \ No newline at end of file