Skip to content

Commit d5e4407

Browse files
committed
add more lines to uncovered application code
1 parent 0b11fd2 commit d5e4407

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

src/application/About/index.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
import React from 'react';
1+
import React from "react";
22

3-
export const About = () => <div>About</div>
3+
export const About = () => (
4+
<div>
5+
<h1>About</h1>
6+
<p>About page</p>
7+
</div>
8+
);

src/application/Users/index.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
import React from 'react';
1+
import React from "react";
22

3-
export const Users = () => <div>Users</div>;
3+
export const Users = () => (
4+
<div>
5+
<h1>Users</h1>
6+
<p>Users page</p>
7+
</div>
8+
);

0 commit comments

Comments
 (0)