diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-11 19:24:04 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-11 19:24:04 +0200 |
| commit | 62f06c40a4eac6d11f1a93f3b49dfe6c48ce16f8 (patch) | |
| tree | 1423b5ec09cd164ea41a9b566b7b97872e83702d /src/components/molecules/layout/meta.test.tsx | |
| parent | a7adae1a2376082841053c91508b1c23dc951b74 (diff) | |
chore: add a Meta component
Diffstat (limited to 'src/components/molecules/layout/meta.test.tsx')
| -rw-r--r-- | src/components/molecules/layout/meta.test.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/molecules/layout/meta.test.tsx b/src/components/molecules/layout/meta.test.tsx new file mode 100644 index 0000000..a738bdb --- /dev/null +++ b/src/components/molecules/layout/meta.test.tsx @@ -0,0 +1,8 @@ +import { render } from '@test-utils'; +import Meta from './meta'; + +describe('Meta', () => { + it('renders a Meta component', () => { + render(<Meta data={{}} />); + }); +}); |
