UNPKG

cafe-art-components

Version:

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). https://hackernoon.com/creating-a-library-of-react-components-using-create-react-app-without-ejecting-d182df690c6b ## Available Scripts

12 lines 370 B
import React from "react"; import TextInput from "./TextInput"; import renderer from "react-test-renderer"; describe("TextInput", function () { it("renders properly", function () { var tree = renderer.create(React.createElement(TextInput, { label: "Email", placeholder: "name@example.com" })).toJSON(); expect(tree).toMatchSnapshot(); }); });