mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-13 03:47:12 +01:00
15 lines
313 B
JavaScript
15 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" /> );
|
|
}
|
|
}
|