How to define a functional component?

import React from 'react';

function App() {
  return <Headline />;
}

function Headline() {
  const greeting = 'Hello Function Component!';

  return <h1>{greeting}</h1>;
}

export default App;
Copy

September 2nd, 2019

# Functional Component

Add to bookmarks

A very simple example for functional components in React.

Tracking with Matomo to improve the UX. See Privacy Policy for more details.