mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-01 19:32:27 +08:00
maintain (admin): admin page upgrade
This commit is contained in:
@ -1,15 +1,6 @@
|
||||
import React from 'react';
|
||||
import { Redirect } from 'react-router-dom';
|
||||
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/backend" /> );
|
||||
}
|
||||
export function HomePage() {
|
||||
return ( <Redirect to="/admin/backend" /> );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user