create react app

This commit is contained in:
heyethereum
2024-04-14 13:24:50 +08:00
parent ede6e1f27c
commit bed3df5944
20 changed files with 18517 additions and 3 deletions

9
src/App.test.tsx Normal file
View File

@@ -0,0 +1,9 @@
import React from 'react';
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();
});