From 687731f26d676c4139b2c1867d630a34b917d412 Mon Sep 17 00:00:00 2001 From: sumbatx15 Date: Sun, 14 May 2023 00:51:25 +0300 Subject: [PATCH] fix: added background export --- src/components/background/Background.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/background/Background.tsx b/src/components/background/Background.tsx index d19a497..e730238 100644 --- a/src/components/background/Background.tsx +++ b/src/components/background/Background.tsx @@ -23,7 +23,7 @@ const selector = (s: StoreState) => ({ scale: s.viewport.scale, }); -function _Background({ +function __Background({ id, variant = BackgroundVariant.Dots, // only used for dots and cross @@ -104,6 +104,6 @@ function _Background({ ); } -_Background.displayName = "Background"; +__Background.displayName = "Background"; -export const Background = memo(_Background); +export const Background = memo(__Background);