aboutsummaryrefslogtreecommitdiffstats
path: root/pages/login.js
blob: d2743eb271b32f33473316e7997a44bdd689f3c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import {benefitTwo} from "../components/data";
import React from "react";
import SignUp from "../components/signup";

const Login = () => {
    return (
    <>
    <SignUp imgPos="right" data={benefitTwo} />
    </>
    )
}
export default Login;