diff --git a/Sources/AppFeature/Shell/RootView.swift b/Sources/AppFeature/Shell/RootView.swift index cd8afe6..cecc501 100644 --- a/Sources/AppFeature/Shell/RootView.swift +++ b/Sources/AppFeature/Shell/RootView.swift @@ -114,3 +114,13 @@ struct EmptyState: View { .background(Sage.surface) } } + +#if DEBUG +#Preview("DS App — full shell") { + @Previewable @State var model = AppModel.preview + RootView() + .environment(model) + .task { await model.loadInitial() } + .frame(minWidth: 1000, minHeight: 660) +} +#endif