import { Button } from "@/components/ui/button" import { ComposedChart } from "@/components/ui/composedchart.tsx"; import { ErrorBoundary, FallbackProps } from "react-error-boundary"; function Fallback(fallbackProps: FallbackProps) { return (

Something went wrong:

{fallbackProps.error.message}
); } function App() { return ( <> ) } export default App