created the base setup for the collectors app ui

This commit is contained in:
2026-06-21 22:46:49 -07:00
commit b013311b97
18 changed files with 17687 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { render, screen } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});