import React, { ComponentProps } from 'react'; import { getClickId } from '@axa-fr/react-toolkit-core'; import ButtonCore from './ButtonCore'; const Button = (props: ComponentProps) => { const propsWithClickId = getClickId>({ option: { event: ['onClick'], }, props, }); return ; }; export default Button;