React: Using components
This posting is going to explain how to use components in React.
import React, { Component } from "react";
class Counter extends Component {
render() {
return <h1>Hello world !</h1>
}
}
export default Counter;
This is an jsx expression.
In the index.js, import Counter component
You can see the result using react component.
Leave a comment