Adding the skeleton QR code

This commit is contained in:
2026-03-14 00:24:58 -04:00
commit 6ce0fc0768
27 changed files with 7628 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { expect, afterEach } from 'vitest';
import { cleanup } from '@testing-library/react';
import * as matchers from '@testing-library/jest-dom/matchers';
expect.extend(matchers);
afterEach(() => {
cleanup();
});