[monorepo][m] - restructuring

- renamed apps to examples
- renamed libs to packages
- fixed data-literate build
This commit is contained in:
Luccas Mateus de Medeiros Gomes
2023-04-11 13:23:53 -03:00
parent ca3eccad86
commit b2438e655f
161 changed files with 6997 additions and 4524 deletions

View File

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