building-react-apps

Installation
SKILL.md

React

Quick Start

import { useState } from 'react';

function Counter() {
  const [count, setCount] = useState(0);

  return (
    <button onClick={() => setCount(c => c + 1)}>
      Count: {count}
    </button>
  );
}

Features

Installs
8
GitHub Stars
4
First Seen
Feb 20, 2026
building-react-apps — doanchienthangdev/omgkit