Skip to content

Commit aad50ed

Browse files
author
Vanshika
committed
Fix: Final file path cleanup. Moved working JS/CSS to root and isolated React files to react_src folder.
1 parent 27bb9ce commit aad50ed

File tree

17 files changed

+1750
-1640
lines changed

17 files changed

+1750
-1640
lines changed

.DS_Store

0 Bytes
Binary file not shown.

App.css

Whitespace-only changes.

App.js

Lines changed: 1639 additions & 0 deletions
Large diffs are not rendered by default.

App.test.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { render, screen } from '@testing-library/react';
2+
import App from './src/react_src/App';
3+
4+
test('renders learn react link', () => {
5+
render(<App />);
6+
const linkElement = screen.getByText(/learn react/i);
7+
expect(linkElement).toBeInTheDocument();
8+
});
9+

0 commit comments

Comments
 (0)