I meet opensourced ts library component and its sub components like following pattern:
import {Box} from 'example/box';
//in react
<Box>
<Box.Left>
Left
</Box.Left>
<Box.Right>
Right
</Box.Right>
</Box>
The question is: how can I implement the Box component in jsx?