Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 248 Bytes

File metadata and controls

19 lines (15 loc) · 248 Bytes

Function Components

Class Components

class APP extends React.Component {
  render() {
    return (
      <div>Class Components</div>
    )
  }
}

Function Components

const App = () => <div>Function Components</div>