import { Button } from 'react-bootstrap-5' import Tooltip from '@/features/ui/components/bootstrap-5/tooltip' import { Meta } from '@storybook/react' export const Tooltips = () => { const placements = ['top', 'right', 'bottom', 'left'] as const return (
{placements.map(placement => ( ))}
) } const meta: Meta = { title: 'Shared / Components / Bootstrap 5 / Tooltip', component: Tooltip, parameters: { bootstrap5: true, }, } export default meta