Skip to content

Commit

Permalink
fix: added background export
Browse files Browse the repository at this point in the history
  • Loading branch information
sumbatx15 committed May 13, 2023
1 parent 145866d commit 687731f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/background/Background.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -104,6 +104,6 @@ function _Background({
);
}

_Background.displayName = "Background";
__Background.displayName = "Background";

export const Background = memo(_Background);
export const Background = memo(__Background);

0 comments on commit 687731f

Please sign in to comment.