export default function Component({ a, b }) {
  return (
    <div className={'toto'}>
      Test {a} {b}
      <img src={'/img/test.png'} alt={'Test'} />
    </div>
  );
}
