Skip to content

Commit bc26fc9

Browse files
Add Other Initial Components
1 parent 09aba5c commit bc26fc9

File tree

6 files changed

+48
-0
lines changed

6 files changed

+48
-0
lines changed

src/components/Help.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import React, { Component } from "react";
2+
import { withStyles } from "@material-ui/styles";
3+
import styles from "../styles/HelpStyles";
4+
5+
class Help extends Component {
6+
render() {
7+
return (
8+
<div>
9+
<h1>Help Page</h1>
10+
</div>
11+
);
12+
}
13+
}
14+
15+
export default withStyles(styles)(Help);

src/components/StaySafe.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import React, { Component } from "react";
2+
import { withStyles } from "@material-ui/styles";
3+
import styles from "../styles/StaySafeStyles";
4+
5+
class StaySafe extends Component {
6+
render() {
7+
return (
8+
<div>
9+
<h1>Stay Safe</h1>
10+
</div>
11+
);
12+
}
13+
}
14+
15+
export default withStyles(styles)(StaySafe);

src/components/Symptoms.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import React, { Component } from "react";
2+
import { withStyles } from "@material-ui/styles";
3+
import styles from "../styles/SymptomsStyles";
4+
5+
class Symptoms extends Component {
6+
render() {
7+
return (
8+
<div>
9+
<h1>Symptoms</h1>
10+
</div>
11+
);
12+
}
13+
}
14+
15+
export default withStyles(styles)(Symptoms);

src/styles/HelpStyles.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default {};

src/styles/StaySafeStyles.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default {};

src/styles/SymptomsStyles.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default {};

0 commit comments

Comments
 (0)