import { memo } from "react"; import type { FC } from "react"; import classes from "./App.module.css"; import resets from "./components/_resets.module.css"; import { Yidian } from "./components/Yidian/Yidian"; import { Login } from "./screen/login/login"; interface Props { className?: string; } export const App: FC = memo(function App(props = {}) { return (
); });