UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

13 lines (10 loc) 363 B
import * as components from "../components/index"; import * as nextComponents from "../next"; describe("exports", () => { it("should export all components", () => { expect(Object.keys(components).sort()).toMatchSnapshot(); }); it("should export next all components", () => { expect(Object.keys(nextComponents).sort()).toMatchSnapshot(); }); });