openfood/pages/auth/sign-up.tsx

8 lines
148 B
TypeScript
Raw Normal View History

2021-10-15 21:53:27 +02:00
import { SignUpFrame } from "../../features/auth/signUpFrame";
2021-10-14 21:28:06 +02:00
const SignUpPage = () => {
2021-10-15 21:53:27 +02:00
return <SignUpFrame />;
2021-10-14 21:28:06 +02:00
};
export default SignUpPage;