Create index.ts
Browse files
src/components/molecules/index.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/**
|
| 2 |
+
* Molecules Barrel Export
|
| 3 |
+
* Aggregates all molecules for standardized, high-level imports.
|
| 4 |
+
*/
|
| 5 |
+
|
| 6 |
+
export * from "./SearchBar";
|
| 7 |
+
export * from "./PaperCard";
|
| 8 |
+
export * from "./FilterChips";
|
| 9 |
+
export * from "./StatCard";
|
| 10 |
+
export * from "./LogoUploader";
|
| 11 |
+
export * from "./NotificationItem";
|