-
- Downloads
Basic structure of a react SDK and start of an implementation.
parents
Showing
- LICENSE 177 additions, 0 deletionsLICENSE
- README.md 4 additions, 0 deletionsREADME.md
- example/index.html 11 additions, 0 deletionsexample/index.html
- example/lib/index.jsx 12 additions, 0 deletionsexample/lib/index.jsx
- example/package.json 19 additions, 0 deletionsexample/package.json
- package.json 21 additions, 0 deletionspackage.json
- src/MatrixClientPeg.js 15 additions, 0 deletionssrc/MatrixClientPeg.js
- src/dispatcher.js 1 addition, 0 deletionssrc/dispatcher.js
- src/index.js 1 addition, 0 deletionssrc/index.js
- src/molecules/HomeServerTextBox.js 31 additions, 0 deletionssrc/molecules/HomeServerTextBox.js
- src/molecules/Message.js 12 additions, 0 deletionssrc/molecules/Message.js
- src/organisms/MessageSection.js 26 additions, 0 deletionssrc/organisms/MessageSection.js
- src/organisms/ThreadSection.js 13 additions, 0 deletionssrc/organisms/ThreadSection.js
- src/pages/MatrixChat.js 26 additions, 0 deletionssrc/pages/MatrixChat.js
- src/templates/Login.js 38 additions, 0 deletionssrc/templates/Login.js
LICENSE
0 → 100644
README.md
0 → 100644
example/index.html
0 → 100644
example/lib/index.jsx
0 → 100644
example/package.json
0 → 100644
package.json
0 → 100644
{ | ||
"name": "matrix-react-sdk", | ||
"version": "0.0.1", | ||
"description": "SDK for matrix.org using React", | ||
"author": "matrix.org", | ||
"license": "Apache 2", | ||
"main": "build/index.js", | ||
"scripts": { | ||
"build": "jsx src/ build", | ||
"start": "jsx -w src/ build --source-map-inline" | ||
}, | ||
"dependencies": { | ||
"react-loader": "^1.4.0", | ||
"flux": "^2.0.3", | ||
"matrix-js-sdk": "0.0.4", | ||
"react": "^0.13.0" | ||
}, | ||
"devDependencies": { | ||
"react-tools": "^0.13.3" | ||
} | ||
} |
src/MatrixClientPeg.js
0 → 100644
src/dispatcher.js
0 → 100644
src/index.js
0 → 100644
src/molecules/HomeServerTextBox.js
0 → 100644
src/molecules/Message.js
0 → 100644
src/organisms/MessageSection.js
0 → 100644
src/organisms/ThreadSection.js
0 → 100644
src/pages/MatrixChat.js
0 → 100644
src/templates/Login.js
0 → 100644
Please sign in to comment