UNPKG

react-easy-setup

Version:

A custom React project setup with Husky and ESLint for pre-commit hooks and code quality

13 lines (11 loc) 215 B
import React from 'react' import { Outlet } from 'react-router' export const AuthLayout = () => { return ( <div className=""> <h2>Login Layout</h2> <h2>Logo</h2> <Outlet /> </div> ) }