new components

This commit is contained in:
soyed 2021-03-28 18:19:40 -04:00
parent 88098c4ce4
commit 028c8a6e3d
11 changed files with 655 additions and 0 deletions

View file

@ -0,0 +1,10 @@
import React from "react";
import { shallow } from "enzyme";
import ListingPage from "./listing-page";
describe("ListingPage", () => {
test("matches snapshot", () => {
const wrapper = shallow(<ListingPage />);
expect(wrapper).toMatchSnapshot();
});
});