UNPKG

react-easy-setup

Version:

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

12 lines (10 loc) 171 B
import React from 'react' import { Outlet } from 'react-router' export const AuthLayout = () => { return ( <div> AuthLayout <Outlet /> </div> ) }