react18-tools/esbuild-plugin-react18-css

View on GitHub
packages/shared-ui/src/root/hero.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import styles from "../root-layout.module.css";
import { Logo } from "../common/logo";

export function Hero() {
  return (
    <div className={styles.center}>
      <div>
        <h1>
          Build with <Logo />
        </h1>
        <p>Unleash the power of React Server Components!</p>
      </div>
    </div>
  );
}