Fancy comes with a special FrameProvider
enables any child Fancy styled component to render styles within the iFrame.
<Frame>
<FrameProvider>
<StyledCard />
</FrameProvider>
</Frame>
If you use the same component outside the iFrame, as long as the FrameProvider
is present, the correct styles will generate.
<App>
<StyledCard />
<Frame>
<FrameProvider>
<StyledCard />
</FrameProvider>
</Frame>
</App>