I'm trying to learn React. There's no error in my terminal but the browser screen is blank.
I’m using Win 11, 64 bit - Node JS 14.17.6
import React from 'react';
import { SubHeading } from '../../components';
import { images } from '../../constants';
import './Header.css';
const Header = () => (
<div className='app__header app__wrapper section__padding' id='home'>
<div className='app__wrapper_info'>
<SubHeading title='Chase the new flavour' />
<h1 className='app__header-h1'>The Key to Fine Dining </h1>
</div>
<div className='app__wrapper_img'>
</div>
Header
</div>
);
export default Header;