├── .babelrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── app ├── app.jsx ├── footer.jsx ├── header.jsx └── sidebar.jsx ├── assets ├── epp.icns ├── epp.ico ├── epp.png └── screenshot.png ├── config.js ├── dev.html ├── index.html ├── index.js ├── index.scss ├── license ├── package.json ├── readme.md ├── scripts ├── menu.js └── watcher.js ├── starter.js ├── styles └── theme.scss └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react", "es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | 10 | [{package.json,*.yml}] 11 | indent_style = space 12 | indent_size = 2 13 | 14 | [*.md] 15 | trim_trailing_whitespace = false 16 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /dist 3 | *.swp 4 | app.js 5 | /out 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /app/app.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDom from "react-dom"; 3 | import { Window, Content, PaneGroup ,Pane } from "react-photonkit"; 4 | 5 | import Header from "./header.jsx" 6 | import Footer from "./footer.jsx"; 7 | import Sidebar from "./sidebar.jsx" 8 | 9 | require('../index.scss'); 10 | 11 | ReactDom.render( 12 | 13 |
14 | 15 | 16 | 17 | 18 | Hello, react-photonkit!!! 19 | 20 | 21 | 22 |