import { Stack } from '@mobily/stacks'; import React from 'react'; import { ScrollView } from 'react-native-gesture-handler'; import UISourceDisplayMolecule from './UISourceDisplayMolecule'; import BoxNucleon from './nucleons/BoxNucleon'; import IconNucleon from './nucleons/IconNucleon'; import { useNuclearContentWidth } from './nucleons/useContentWidthContext'; import { PropsWithStyle } from './nucleons/types'; import { TNodeTransformDisplayProps } from '@doc/pages'; import UICardContainer from './UICardContainer'; export type TNodeTransformDisplayOrganismProps = PropsWithStyle< TNodeTransformDisplayProps & { style?: any } >; function TNodeTransformDisplayOrganismInner({ html, snaphost }: TNodeTransformDisplayOrganismProps) { const contentWidth = useNuclearContentWidth(); const sourceDisplayStyle = { minWidth: contentWidth }; return ( ); } export default function TNodeTransformDisplayOrganism( props: TNodeTransformDisplayOrganismProps ) { return ( ); }