8 lines
145 B
JavaScript
8 lines
145 B
JavaScript
import React from 'react'
|
|
|
|
function About(props) {
|
|
// props are passed from App as {...this.state}
|
|
return "we'r here"
|
|
}
|
|
export default About
|