UNPKG

create-swiftstart

Version:

Automate the setup of Vite-React & Next.js projects with a pre-designed boilerplate structure using create-swiftstart. This tool saves your time and provides a clean starting point for your React or Next.js applications.

12 lines (10 loc) 215 B
import { Outlet } from "react-router-dom"; export const AuthLayout = () => { return ( <> <main className="min-h-screen max-container padding-container"> <Outlet /> </main> </> ); };