move a bunch of files around

This commit is contained in:
Spectralitree 2021-06-26 19:51:14 +02:00
parent 9323985c8d
commit c1de266b2d
13 changed files with 32 additions and 32 deletions

13
src/Pages/Dash.js Normal file
View file

@ -0,0 +1,13 @@
import React from 'react';
import System from '../Components/Private/System.js'
import Memberlist from '../Components/Private/Memberlist.js'
export default function Dash(props) {
return (<>
<System />
<Memberlist />
</>
);
}