Initial scaffold: Expo SDK 56, expo-router, expo-sqlite, NativeWind

This commit is contained in:
2026-06-18 16:50:27 +02:00
parent f12febf122
commit 8388f49fd4
24 changed files with 10060 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
export type IncidentStatus = "open" | "resolved";
export interface Incident {
id: string;
title: string;
service: string;
symptom: string;
rootCause: string;
fix: string;
status: IncidentStatus;
createdAt: string;
updatedAt: string;
tags: string[];
}
export type IncidentDraft = Omit<Incident, "id" | "createdAt" | "updatedAt">;