mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-02 11:57:04 +08:00
7 lines
153 B
JavaScript
7 lines
153 B
JavaScript
import React from "react";
|
|
import { Redirect } from "react-router-dom";
|
|
|
|
export function HomePage() {
|
|
return ( <Redirect to="/admin/backend" /> );
|
|
}
|