扣子智能体
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
tecvan 6995cec404
chore: format all frontend files (#430)
3 months ago
..
.storybook feat: manually mirror opencoze's code from bytedance 3 months ago
__tests__ feat: manually mirror opencoze's code from bytedance 3 months ago
config feat: manually mirror opencoze's code from bytedance 3 months ago
src chore: format all frontend files (#430) 3 months ago
.stylelintrc.js feat: manually mirror opencoze's code from bytedance 3 months ago
README.md feat: manually mirror opencoze's code from bytedance 3 months ago
eslint.config.js feat: manually mirror opencoze's code from bytedance 3 months ago
package.json feat: manually mirror opencoze's code from bytedance 3 months ago
tsconfig.build.json feat: manually mirror opencoze's code from bytedance 3 months ago
tsconfig.json feat: manually mirror opencoze's code from bytedance 3 months ago
tsconfig.misc.json feat: manually mirror opencoze's code from bytedance 3 months ago
vitest.config.ts chore: format all frontend files (#430) 3 months ago

README.md

@coze-devops/common-modules

Project template for react component with storybook.

目录结构说明

├── __tests__
├── .storybook
├── config
├── src
│   ├── assets  ## 公共静态资源
│   │   ├── react.svg
│   │   └── rspack.png
│   ├── components  ## 公共组件
│   ├── hooks  ## 公共组件
│   ├── index.tsx  ## 对外统一出口, 导出内容类型可以是:component, hook, util, typing
│   ├── modules  ## 模块集合:子目录按业务模块划分;另外,index.tsx中导出的资源都是来自于modules目录
│   │   └── query-trace
│   ├── services  ## 请求 api 封装
│   ├── styles  ## 公共样式
│   ├── typings  ## 公共类型
│   ├── typings.d.ts
│   └── utils  ## 公共工具库
├── stories  ## 文档
├── .eslintrc.js
├── .stylelintrc.js
├── OWNERS
├── package.json
├── README.md
├── tsconfig.build.json
├── tsconfig.json
└── vitest.config.ts