Autocomplete for React components in vscode

is there a way for autocomplete react components like JSX tags , like this code below, I want VS code to autocomplete Header, Main and Footer Components and so on

function App() {
    return (
    <>
      <Header />
      <Main />
      <Footer/>
    </>
    );
}