Initial commit

This commit is contained in:
2024-08-21 11:26:35 +02:00
commit 9446fe60a8
41 changed files with 15107 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react';
import { render } from '@testing-library/react';
import Page from '../src/app/page';
describe('Page', () => {
it('should render successfully', () => {
const { baseElement } = render(<Page />);
expect(baseElement).toBeTruthy();
});
});