mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-03 21:17:33 +08:00
16 lines
313 B
JavaScript
16 lines
313 B
JavaScript
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" /> );
|
|
}
|
|
}
|