14 lines
224 B
JavaScript
14 lines
224 B
JavaScript
import React from 'react';
|
|
import InputField from "../components/reg/InputField.jsx";
|
|
|
|
const SignIn = () => {
|
|
return (
|
|
<div>
|
|
<h1>SignIn</h1>
|
|
<InputField/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default SignIn;
|