From cef5cc5ff7514a4e791c9b82ca011c8f58a1810a Mon Sep 17 00:00:00 2001 From: KorbsStudio Date: Mon, 13 Feb 2023 13:56:29 -0500 Subject: [PATCH] Put Tabs config in it's own file --- astro/components/Sidebar.astro | 3 ++- astro/tabs.ts | 36 ++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 astro/tabs.ts diff --git a/astro/components/Sidebar.astro b/astro/components/Sidebar.astro index 93ba637..70b922a 100644 --- a/astro/components/Sidebar.astro +++ b/astro/components/Sidebar.astro @@ -1,5 +1,6 @@ --- -import { APP, SIDEBARTOP, SIDEBARBOTTOM } from '../config' +import { APP } from '../config' +import { SIDEBARTOP, SIDEBARBOTTOM } from '../tabs' ---