made the route for the pages, navbar and footer of the application
This commit is contained in:
parent
a6f889de46
commit
b03cbe3164
21 changed files with 193 additions and 66 deletions
0
src/homePage/homePage.css
Normal file
0
src/homePage/homePage.css
Normal file
9
src/homePage/homePage.js
Normal file
9
src/homePage/homePage.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
import React, { Component } from "react";
|
||||
|
||||
class HomePage extends Component {
|
||||
render() {
|
||||
return <div>HomePage</div>;
|
||||
}
|
||||
}
|
||||
|
||||
export default HomePage;
|
10
src/homePage/homePage.test.js
Normal file
10
src/homePage/homePage.test.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import React from "react";
|
||||
import { shallow } from "enzyme";
|
||||
import HomePage from "./homePage";
|
||||
|
||||
describe("HomePage", () => {
|
||||
test("matches snapshot", () => {
|
||||
const wrapper = shallow(<HomePage />);
|
||||
expect(wrapper).toMatchSnapshot();
|
||||
});
|
||||
});
|
1
src/homePage/index.js
Normal file
1
src/homePage/index.js
Normal file
|
@ -0,0 +1 @@
|
|||
export { default } from "./homePage";
|
Loading…
Add table
Add a link
Reference in a new issue