aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/styles
diff options
context:
space:
mode:
authorKevin Hoerr <kjhoerr@protonmail.com>2022-11-28 17:37:25 -0500
committerGitHub <noreply@github.com>2022-11-28 17:37:25 -0500
commit832794e035705e7f0a5989ce240a385e5ccebf62 (patch)
treeed836a8473688545e93270f25697433e77feba20 /src/styles
parent73736f0873017967e78538d42fcfabb60ba8b4a2 (diff)
downloadsubmelon.dev-832794e035705e7f0a5989ce240a385e5ccebf62.tar.gz
submelon.dev-832794e035705e7f0a5989ce240a385e5ccebf62.tar.bz2
submelon.dev-832794e035705e7f0a5989ce240a385e5ccebf62.zip
Reintegrate GraphQL (#23)
* Use GraphQL for site metadata incl version * Explicit props for passthrough components
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/index.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/styles/index.ts b/src/styles/index.ts
index 8eee62a..978271a 100644
--- a/src/styles/index.ts
+++ b/src/styles/index.ts
@@ -4,4 +4,6 @@ import BlockHeader from "./BlockHeader";
import Content from "./Content";
import Footer from "./Footer";
-export { BlockAnchor, BlockBody, BlockHeader, Content, Footer };
+type Theme = Record<string, never>;
+
+export { BlockAnchor, BlockBody, BlockHeader, Content, Footer, Theme };