mirror of
https://github.com/stonith404/pingvin-share.git
synced 2025-01-29 01:28:59 -05:00
6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
|
import React from 'react';
|
||
|
import { Redirect } from 'react-router-dom';
|
||
|
|
||
|
export default function Home() {
|
||
|
return <Redirect to='/pingvin-share/introduction' />;
|
||
|
}
|