mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-12 17:23:18 +03:00
7 lines
160 B
TypeScript
7 lines
160 B
TypeScript
import React from "react";
|
|
import { Redirect } from "react-router-dom";
|
|
|
|
export default function Home() {
|
|
return <Redirect to="/pocket-id/introduction" />;
|
|
}
|