-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathAboutClassComponent.js
More file actions
33 lines (27 loc) · 886 Bytes
/
AboutClassComponent.js
File metadata and controls
33 lines (27 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import React from "react"
// import ProfileClassComponent from "./ProfileClassComponent4"
// import ProfileClassComponent1 from "./ProfileClassComponent5"
// import ProfileClassComponent2 from "./ProfileClassComponent6"
// import ProfileClassComponent from "./ProfileClassComponent7"
import ProfileClassComponent from "./ProfileClassComponent8"
class AboutClassComponent extends React.Component {
constructor() {
super()
// console.log("Parent: constructor()")
}
componentDidMount() {
// console.log("Parent: componentDidMount()")
}
render() {
// console.log("Parent: render()")
return (
<div className="flex-container">
<h2 className="warning">About</h2>
<ProfileClassComponent />
{/* <ProfileClassComponent1 /> */}
{/* <ProfileClassComponent2 /> */}
</div>
)
}
}
export default AboutClassComponent