init refine app

This commit is contained in:
maxim
2025-01-19 17:30:54 +03:00
commit 266c7fa070
32 changed files with 7655 additions and 0 deletions

12
src/pages/login/index.tsx Normal file
View File

@ -0,0 +1,12 @@
import { AuthPage } from "@refinedev/mui";
export const Login = () => {
return (
<AuthPage
type="login"
formProps={{
defaultValues: { email: "demo@refine.dev", password: "demodemo" },
}}
/>
);
};