Navi/frontend/node_modules/react
小龙 a1951c3aeb feat: 导航收藏网站 v1.0
功能:
- 网站收藏管理(添加/编辑/删除/收藏)
- 分类管理(支持自定义图标和颜色)
- 搜索功能
- 点击统计
- 现代暗色主题 UI

技术栈:
- 后端: Python Flask + MySQL
- 前端: React + Vite + Tailwind CSS
- 数据库: MySQL (192.168.8.160)
- 端口: 后端 5003, 前端 5173
2026-04-06 10:40:43 +00:00
..
cjs feat: 导航收藏网站 v1.0 2026-04-06 10:40:43 +00:00
umd feat: 导航收藏网站 v1.0 2026-04-06 10:40:43 +00:00
index.js feat: 导航收藏网站 v1.0 2026-04-06 10:40:43 +00:00
jsx-dev-runtime.js feat: 导航收藏网站 v1.0 2026-04-06 10:40:43 +00:00
jsx-runtime.js feat: 导航收藏网站 v1.0 2026-04-06 10:40:43 +00:00
LICENSE feat: 导航收藏网站 v1.0 2026-04-06 10:40:43 +00:00
package.json feat: 导航收藏网站 v1.0 2026-04-06 10:40:43 +00:00
react.shared-subset.js feat: 导航收藏网站 v1.0 2026-04-06 10:40:43 +00:00
README.md feat: 导航收藏网站 v1.0 2026-04-06 10:40:43 +00:00

react

React is a JavaScript library for creating user interfaces.

The react package contains only the functionality necessary to define React components. It is typically used together with a React renderer like react-dom for the web, or react-native for the native environments.

Note: by default, React will be in development mode. The development version includes extra warnings about common mistakes, whereas the production version includes extra performance optimizations and strips all error messages. Don't forget to use the production build when deploying your application.

Usage

import { useState } from 'react';
import { createRoot } from 'react-dom/client';

function Counter() {
  const [count, setCount] = useState(0);
  return (
    <>
      <h1>{count}</h1>
      <button onClick={() => setCount(count + 1)}>
        Increment
      </button>
    </>
  );
}

const root = createRoot(document.getElementById('root'));
root.render(<App />);

Documentation

See https://reactjs.org/

API

See https://reactjs.org/docs/react-api.html