remove vogel-social-media-folder from frontend and merge .gitignore into one file

This commit is contained in:
luisa.bellitto 2025-05-08 17:09:06 +02:00 committed by Rudi Regentonne
parent 26506630ef
commit 73ba7a09c6
27 changed files with 35 additions and 34 deletions

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();
});