import { afterEach } from 'vitest';
import { cleanup } from '@testing-library/react';
import React from 'react';
import '@testing-library/jest-dom/vitest';
afterEach(() => {
cleanup();
});