Drop trainvel backend, this is now a frontend-only app

This commit is contained in:
2024-11-10 16:34:18 +01:00
parent bc23d63c43
commit 036e1604bd
84 changed files with 22 additions and 7984 deletions

8
src/Station.test.js Normal file
View File

@ -0,0 +1,8 @@
import { render, screen } from '@testing-library/react';
import Station from './Station';
test('renders learn react link', () => {
render(<Station />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});