Home / TryReact / TryBabel / Scripts / React / Src / Component2 / Component2.jsx
class Component2 extends React.Component { constructor(props) { super(props); console.log('Component2'); } render() { return <h1>I'm Component2</h1>; } }