9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
|
import React from 'react';
|
||
|
import AuthForPartners from '../components/Auth/AuthForPartners';
|
||
|
|
||
|
const AuthPageForPartners = ({ setAuth }) => {
|
||
|
return <AuthForPartners setAuthed={setAuth} />;
|
||
|
};
|
||
|
|
||
|
export default AuthPageForPartners;
|