"official/legacy/detection/README.md" did not exist on "d22005489b25d63c927040ad03ff12170fa592b1"
index.tsx 228 Bytes
Newer Older
dechen lin's avatar
dechen lin committed
1
2
3
4
5
6
7
8
9
10
11
import { Outlet } from "react-router-dom";

const Formula = () => {
  return (
    <div className="relative w-full h-full flex flex-col items-center justify-center ">
      <Outlet />
    </div>
  );
};

export default Formula;