mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-09 18:05:46 +00:00
19 lines
357 B
TypeScript
19 lines
357 B
TypeScript
import { Redirect } from '@docusaurus/router';
|
|
|
|
|
|
function NoscriptRedirect() {
|
|
return (
|
|
<noscript>
|
|
<meta http-equiv="refresh" content="0;url=https://stract.com/beta/api/docs/swagger" />
|
|
</noscript>
|
|
);
|
|
}
|
|
|
|
export default function Home(): JSX.Element {
|
|
return (
|
|
<>
|
|
<NoscriptRedirect />
|
|
<Redirect to="/api" />
|
|
</>
|
|
);
|
|
}
|