Example of how to create a data portal in 5 minutes (#769)

* [example][m] - start of a simple-example

* Empty-Commit

* [simple-example][sm] - change from repos.json to datasets.json

* [example][m] - changed styling and added octokit

* [build][sm] - fix build
This commit is contained in:
Luccas Mateus
2023-04-18 13:51:48 -03:00
committed by GitHub
parent 4c4f56f679
commit 20ac80a5e8
43 changed files with 8050 additions and 246 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();
});
});