Create index.ts
Browse files
src/components/organisms/index.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/**
|
| 2 |
+
* Organisms Barrel Export
|
| 3 |
+
* Aggregates complex UI blocks for standardized usage in Templates and Pages.
|
| 4 |
+
*/
|
| 5 |
+
|
| 6 |
+
export * from "./Sidebar";
|
| 7 |
+
export * from "./Header";
|
| 8 |
+
export * from "./PaperGrid";
|