UNPKG

@shined/reactive

Version:

⚛️ Proxy-driven state library for JavaScript application, Intuitive, Flexible and Written in TypeScript.

11 lines (8 loc) 298 B
import { describe, expect, it } from 'vitest' import { createWithHooks, useSnapshot } from './index.js' describe('react index export', () => { it('[createWithHooks, useSnapshot] should be defined', () => { expect(useSnapshot).toBeDefined() expect(createWithHooks).toBeDefined() }) })