Fixed a typo.

This commit is contained in:
Batuhan Berk Başoğlu 2021-03-29 19:39:51 -04:00
parent ad8949e1b6
commit b60b78ff0d
3 changed files with 0 additions and 19 deletions

View file

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

View file

@ -1,10 +0,0 @@
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();
});
});