-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatterns.ts
More file actions
18 lines (16 loc) · 705 Bytes
/
patterns.ts
File metadata and controls
18 lines (16 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// ---------------------------------------------------------------------------
// Sibu — Patterns
// Advanced state management patterns.
// import { machine, persisted, timeline } from "sibu/patterns";
// ---------------------------------------------------------------------------
// State patterns
export * from "./src/patterns/machine";
export * from "./src/patterns/persist";
export * from "./src/patterns/optimistic";
export * from "./src/patterns/timeTravel";
export * from "./src/patterns/globalStore";
// Component patterns
export * from "./src/patterns/hoc";
export * from "./src/patterns/composable";
export * from "./src/patterns/componentProps";
export * from "./src/patterns/contracts";