Add dropdown on Sort button on table

This commit is contained in:
Charles Bochet
2023-04-19 12:58:08 +02:00
parent bb40c1b40a
commit 1e635b9d2f
11 changed files with 215 additions and 16 deletions
@@ -0,0 +1,9 @@
import { render } from '@testing-library/react';
import { RegularTableHeader } from '../__stories__/TableHeader.stories';
it('Checks the TableHeader renders', () => {
const { getByText } = render(<RegularTableHeader />);
expect(getByText('Test')).toBeDefined();
});