8 lines
181 B
JavaScript
8 lines
181 B
JavaScript
![]() |
import { Popout } from 'shared/components/popout.mjs'
|
||
|
|
||
|
export const PopoutWrapper = (props) => (
|
||
|
<div className="w-full lg:max-w-lg xl:mx-8">
|
||
|
<Popout {...props} />
|
||
|
</div>
|
||
|
)
|