Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 247 Bytes

File metadata and controls

20 lines (16 loc) · 247 Bytes
Basic React Component
import React from 'react'

const App = () => {
  return <h1>Hello World!</h1> // HTML like JSX syntax
}

export default App