From 17c4e562c12c63509b4b93752e5f02067ac6ac31 Mon Sep 17 00:00:00 2001 From: TheoryOfNekomata Date: Mon, 10 Apr 2023 07:03:10 +0800 Subject: [PATCH] Export goober CSS-in-JS utils Export the setup and extractCss functions for setup in frameworks. --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 7e839a2..2db97c8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -141,3 +141,4 @@ _css.media = cssMedia; _css.cx = cssCompile; export const css = _css as Css; +export { setup, extractCss } from 'goober';