2025-05-14 21:49:03 +02:00

10 lines
254 B
TypeScript

import React from 'react';
import { render, screen } from 'utils/test-utils';
import MosaicStructure from './MosaicStructure';
describe('MosaicStructure', () => {
it('should render without crashing', () => {
render(<MosaicStructure />);
});
});