This library provides some simple components.
It's a spinner to show the "loading" status.
import Spinner from 'near-social-bridge/Spinner'
This component is beneficial as it'll automatically sync the VM iframe's height according to its content height.
import Container from 'near-social-bridge/Container'
const MyPage = () => {
return (
<Container>
<p>My nice content</p>
</Container>
)
}