aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/MetaItems/index.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-03-01 22:08:56 +0100
committerArmand Philippot <git@armandphilippot.com>2022-03-01 22:08:56 +0100
commit80d54805e26a6a6971c5ad214b02456dcc226628 (patch)
tree9b81e0cd3ff881b2cbeb81f9f96b52b510d67646 /src/components/MetaItems/index.tsx
parent99ae0a9d3a923ca1e998dc9b504dad607fdfd768 (diff)
parent8bd9784acdee6871ad70e86d0d7120299bf76969 (diff)
refactor: various refactoring
Improve maintenance (meta splitting) and try to improve performance (dynamic imports).
Diffstat (limited to 'src/components/MetaItems/index.tsx')
-rw-r--r--src/components/MetaItems/index.tsx21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/components/MetaItems/index.tsx b/src/components/MetaItems/index.tsx
new file mode 100644
index 0000000..e90d5a6
--- /dev/null
+++ b/src/components/MetaItems/index.tsx
@@ -0,0 +1,21 @@
+import Author from './Author/Author';
+import CommentsCount from './CommentsCount/CommentsCount';
+import Dates from './Dates/Dates';
+import MetaItem from './MetaItem/MetaItem';
+import PostsCount from './PostsCount/PostsCount';
+import ReadingTime from './ReadingTime/ReadingTime';
+import Thematics from './Thematics/Thematics';
+import Topics from './Topics/Topics';
+import Website from './Website/Website';
+
+export {
+ Author,
+ CommentsCount,
+ Dates,
+ MetaItem,
+ PostsCount,
+ ReadingTime,
+ Thematics,
+ Topics,
+ Website,
+};