mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-01 10:56:31 +08:00
feature (admin): admin console
This commit is contained in:
15
client/pages/adminpage/home.js
Normal file
15
client/pages/adminpage/home.js
Normal file
@ -0,0 +1,15 @@
|
||||
import React from 'react';
|
||||
import { Redirect } from 'react-router-dom';
|
||||
|
||||
export class HomePage extends React.Component {
|
||||
constructor(props){
|
||||
super(props);
|
||||
this.state = {
|
||||
stage: "loading"
|
||||
}
|
||||
}
|
||||
|
||||
render(){
|
||||
return ( <Redirect to="/admin/dashboard" /> );
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user