♻️ (builder) Remove barrel export and flatten folder arch

This commit is contained in:
Baptiste Arnaud
2023-03-15 11:51:30 +01:00
parent cbc8194f19
commit 44d7a0bcb8
498 changed files with 1542 additions and 1786 deletions

View File

@@ -6,7 +6,7 @@ type Props = {
action: GoogleAnalyticsOptions['action']
}
export const GoogleAnalyticsNodeContent = ({ action }: Props) => (
export const GoogleAnalyticsNodeBody = ({ action }: Props) => (
<Text color={action ? 'currentcolor' : 'gray.500'} noOfLines={1}>
{action ? `Track "${action}"` : 'Configure...'}
</Text>

View File

@@ -1,2 +0,0 @@
export { GoogleAnalyticsSettings } from './components/GoogleAnalyticsSettings'
export { GoogleAnalyticsLogo } from './components/GoogleAnalyticsLogo'