react18-tools/esbuild-plugin-react18-css

View on GitHub
packages/shared-ui/src/cards/star-me-card.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { StarMe } from "@mayank1513/fork-me";
import styles from "./cards.module.css";

export function StarMeCard() {
  return (
    <StarMe className={styles.card} gitHubUrl="https://github.com/react18-tools/esbuild-plugin-react18-css">
      <h2>
        Star this repo <span>-&gt;</span>
      </h2>
      <p>Star this repo for your new library!</p>
    </StarMe>
  );
}