Configuration
Wrap the app using Flower Provider
The FlowerProvider component wraps the entire application, providing a global context for managing the application flow.
app.tsx
import { FlowerProvider } from "@flowerforce/flower-react";
export default function RootLayout() {
return (
<FlowerProvider>
<App />
</FlowerProvider>
);
}