Widget: prevent circular imports

This commit is contained in:
Alex Gleason 2022-04-19 11:36:55 -05:00
parent 6968c6bf40
commit 5a4ad706cf
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -1,6 +1,8 @@
import React from 'react';
import { Stack, HStack, Text, IconButton } from 'soapbox/components/ui';
import { Text, IconButton } from 'soapbox/components/ui';
import HStack from 'soapbox/components/ui/hstack/hstack';
import Stack from 'soapbox/components/ui/stack/stack';
interface IWidgetTitle {
title: string | React.ReactNode,