new components

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

View file

View file

@ -0,0 +1,9 @@
import React, { Component } from "react";
class AgentPage extends Component {
render() {
return <div>AgentPage</div>;
}
}
export default AgentPage;

View file

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