mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-07 17:02:29 +01:00
6 lines
153 B
JavaScript
6 lines
153 B
JavaScript
import React from "react";
|
|
import { Redirect } from "react-router-dom";
|
|
|
|
export function HomePage() {
|
|
return ( <Redirect to="/admin/backend" /> );
|
|
}
|