9dd7fb2748
- Automatically refresh the jobs page when there are no jobs
- Celebrate 🎊
9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
import { ExternalScriptsFunction } from "remix-utils";
|
|
import { BreadcrumbItem } from "~/components/navigation/Breadcrumb";
|
|
|
|
export type Handle = {
|
|
breadcrumb?: BreadcrumbItem;
|
|
expandSidebar?: boolean;
|
|
scripts?: ExternalScriptsFunction;
|
|
};
|