Skip to content
Snippets Groups Projects
Commit a3426f95 authored by Tadeusz Miesiąc's avatar Tadeusz Miesiąc
Browse files

refactor(removed example components): removed example components, they are no longer valid

parent 3cf912e7
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!6feat(set up placeholders for layout): set up placeholders for layout
import React from 'react';
const ExampleDomain = (): JSX.Element => <p>test</p>;
export default ExampleDomain;
import React from 'react';
import { render, screen } from '@testing-library/react';
import ExampleDomain from './ExampleDomain.component';
describe('ExampleDomain - component', () => {
it('should return true', () => {
render(<ExampleDomain />);
expect(screen.getByText('test'));
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment