kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 12 lines 297 B view raw
1import { ErrorDisplay } from "./error-display"; 2 3type ErrorFallbackProps = { 4 error: Error; 5 resetError: () => void; 6}; 7 8export function ErrorFallback({ error, resetError }: ErrorFallbackProps) { 9 return ( 10 <ErrorDisplay error={error} onRetry={resetError} className="min-h-screen" /> 11 ); 12}