@epicdm/flowstate-app-framework
v1.0.0
Published
Framework for building embeddable Flowstate Apps
Downloads
104
Maintainers
Readme
@epicdm/flowstate-app-framework
Framework for building embeddable Flowstate Apps that can run standalone or embedded in other React applications.
Features
- ✅ Configurable navigation (show/hide when embedded)
- ✅ Service injection (Auth, Database)
- ✅ React Router integration (BrowserRouter + MemoryRouter)
- ✅ Mobile-first responsive layouts
- ✅ Full TypeScript support
- ✅ Provider Pattern architecture
Installation
yarn add @epicdm/flowstate-app-frameworkQuick Start
import {
FlowstateAppContainer,
FlowstateAppLayout,
} from '@epicdm/flowstate-app-framework';
export function MyApp({ config }) {
return (
<FlowstateAppContainer config={config}>
<FlowstateAppLayout
sidebar={<MySidebar />}
header={<MyHeader />}
>
<MyRouter />
</FlowstateAppLayout>
</FlowstateAppContainer>
);
}Documentation
See docs/flowstate-apps-framework.md for complete documentation.
Example
See @epicdm/flowstate-app-todo for a complete example implementation.
