We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a2b6ca7 + aa0701b commit 2cc6b81Copy full SHA for 2cc6b81
src/pages-conditional/what-is-ethereum.tsx
@@ -111,9 +111,11 @@ const TwoColumnContent = (props: FlexProps) => (
111
112
const Section = (props: BoxProps) => <Box w="full" py={12} px={8} {...props} />
113
114
-const Width60 = (props: ChildOnlyProp) => <Box w="full" flex={3} {...props} />
+export const Width60 = (props: ChildOnlyProp) => (
115
+ <Box w="full" flex={3} {...props} />
116
+)
117
-const Width40 = (props: ChildOnlyProp) => (
118
+export const Width40 = (props: ChildOnlyProp) => (
119
<Center w="full" flex={2} {...props} />
120
)
121
0 commit comments