This commit is contained in:
archer
2023-07-26 22:07:00 +08:00
parent 8be1834cfb
commit cd2fd77df1
138 changed files with 12793 additions and 6 deletions

View File

@@ -0,0 +1,8 @@
import React, { useEffect } from 'react';
export default function Home(): JSX.Element {
useEffect(() => {
location.replace('https://fastgpt.run');
}, []);
return <></>;
}