function App()

in frontend/src/App.tsx [5:19]


function App() {
  return (
    <>
      <div>
        <a href="https://www.jetbrains.com/teamcity" target="_blank">
          <img src={TeamCityLogo} className={styles.logo} alt="TeamCity logo" />
        </a>
      </div>
      <h1>TeamCity</h1>
      <p className={styles.description}>
        {'TeamCity is a general-purpose CI/CD software platform that allows for flexible workflows, collaboration and development practices.'}
      </p>
    </>
  )
}