From 651f019141b488a82fd42028bce5b0003abbfaf5 Mon Sep 17 00:00:00 2001 From: Kevin Hoerr Date: Mon, 21 Nov 2022 18:19:16 -0500 Subject: Layout changes (#15) * Layout refactor and standardization * Use split to condense short array * Fix verbage --- src/components/index.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/components/index.ts (limited to 'src/components/index.ts') diff --git a/src/components/index.ts b/src/components/index.ts new file mode 100644 index 0000000..6e7bcb7 --- /dev/null +++ b/src/components/index.ts @@ -0,0 +1,4 @@ +import BlockLink from "./BlockLink"; +import Layout from "./Layout"; + +export { BlockLink, Layout }; -- cgit