mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 14:38:58 -04:00
* finally * should be working? * fix types * fix types * Wouldn't it be nice if Metro would just work * idk * try harder Metro * potentially fix bundling issues * idk, maybe fix it? * fix metro * update podfile.lock * bruh * bruhz * tailwind is drunk again --------- Co-authored-by: Utku Bakir <74243531+utkubakir@users.noreply.github.com>
11 lines
311 B
TypeScript
11 lines
311 B
TypeScript
import { Outlet } from 'react-router';
|
|
|
|
export const Component = () => (
|
|
<div className="custom-scroll page-scroll relative flex h-full max-h-screen w-full grow-0">
|
|
<div className="flex w-full max-w-4xl flex-col space-y-6 px-12 pb-5 pt-2">
|
|
<Outlet />
|
|
<div className="block h-20" />
|
|
</div>
|
|
</div>
|
|
);
|