反应材料-ui 11.1主题文档

时间:2015-09-28 19:49:56

标签: reactjs material-ui

这可能看起来有些愚蠢的问题,但在哪里可以找到材料-ui 11.1中的主题文档?他们的主页上的文档刚刚更改为12.1,但我仍在使用11.1,目前我和我的团队已经被锁定在我们正在创建的应用程序版本中。

1 个答案:

答案 0 :(得分:2)

The docs are in the main repo under /Docs, so you could check out the 11.1 release and run locally to browse the docs, or just read the source: https://github.com/callemall/material-ui/blob/b55b770f2049852febe47bef27aa0eaceafcec08/docs%2Fsrc%2Fapp%2Fcomponents%2Fpages%2Fcustomization%2Fthemes.jsx?ts=4

To browse the docs locally for v11.1 :

git clone git@github.com:callemall/material-ui.git
cd material-ui
git checkout v0.11.1
npm install
cd docs
npm install
npm start

Then open http://localhost:3000

相关问题