mirror of
https://github.com/didi/KnowStreaming.git
synced 2026-01-03 19:38:20 +08:00
8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
import React from 'react';
|
|
import { Redirect } from 'react-router-dom';
|
|
const HomePage = () => {
|
|
return <Redirect to="/setting" />;
|
|
};
|
|
|
|
export default HomePage;
|