Remove unused features from starter kit, #35
This commit is contained in:
Vendored
+1
-9
@@ -6,13 +6,6 @@ export interface Auth {
|
||||
user: User;
|
||||
}
|
||||
|
||||
export interface BreadcrumbItem {
|
||||
title: string;
|
||||
href: string;
|
||||
}
|
||||
|
||||
export type BreadcrumbItemType = BreadcrumbItem;
|
||||
|
||||
export interface NavGroup {
|
||||
title: string;
|
||||
items: NavItem[];
|
||||
@@ -26,6 +19,7 @@ export interface NavItem {
|
||||
isActive?: boolean;
|
||||
action?: NavAction
|
||||
}
|
||||
|
||||
export interface NavAction {
|
||||
title: string;
|
||||
href: NonNullable<InertiaLinkProps['href']>;
|
||||
@@ -33,10 +27,8 @@ export interface NavAction {
|
||||
color?: string;
|
||||
}
|
||||
|
||||
|
||||
export type AppPageProps<T extends Record<string, unknown> = Record<string, unknown>> = T & {
|
||||
name: string;
|
||||
quote: { message: string; author: string };
|
||||
auth: Auth;
|
||||
sidebarOpen: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user