WebJamApps/JaMmusic

View on GitHub
src/App/AppTemplate/HeaderSection.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export function HeaderSection() {
  return (
    <div id="header" className="material-header home-header">
      <div id="ohaflogo" className="headercontent">
        <img alt="ohaflogo" src="../static/imgs/webjamicon7.png" className="home-header-image" />
      </div>
      <div className="headercontent header-text-card">
        <h3 className="header-text" style={{ marginTop: 0 }}>Web Jam LLC</h3>
      </div>
    </div>
  );
}