到目前为止我做了什么
步骤 1. 纱线添加 githubURL
步骤 2. "comet-chat-repo": "https://github.com/Vivek/cometChatRepo.git",
上面的文件添加到 package.json
步骤 3. 尝试从 GitHub 存储库导入组件
从“彗星聊天仓库”导入 { CometChatGroupListWithMessages };
未找到模块:无法解析“C:\Users”中的“comet-chat-repo”
步骤 1. 纱线添加 githubURL
步骤 2. "comet-chat-repo": "https://github.com/Vivek/cometChatRepo.git",
上面的文件添加到 package.json
步骤 3. 尝试从 GitHub 存储库导入组件
从“彗星聊天仓库”导入 { CometChatGroupListWithMessages };
未找到模块:无法解析“C:\Users”中的“comet-chat-repo”
npm install git://github.com/username/repo.git#branch-name
yarn add git://github.com/username/repo.git#branch-name
// Example
yarn add git://github.com/denvash/react-pagination-example.git#master
然后根据repo路径导入,例如:
import Pagination from 'react-pagination/src/components/Pagination.react'