1
0
Fork 0
freesewing/sites/shared/components/wrappers/popout.mjs

8 lines
187 B
JavaScript
Raw Normal View History

import { Popout } from 'shared/components/popout/index.mjs'
2023-05-08 09:31:37 +02:00
export const PopoutWrapper = (props) => (
<div className="w-full lg:max-w-lg xl:mx-8">
<Popout {...props} />
</div>
)