Configurations
Schema, Schema Experience, App, Plugin, and Stores are essential components that need to be configured to ensure the smooth operation and customization of your application.
After configuring stores, add it to AppLayout to make it available to the application.
AppLayout.tsx
<LayoutProvider
// ...
dataService={dataService}
metadataProps={{
appStore,
experienceStore: clientExperienceStore,
schemaStore: clientSchemaStore,
}}
>
<App appId="default">{children}</App>
</LayoutProvider>