├── .eslintrc ├── .gitignore ├── .npmignore ├── README.md ├── example ├── basic.jsx ├── example.config.js ├── index.html └── server.config.js ├── mocha.opts ├── package.json ├── src ├── head.jsx ├── rows.jsx ├── table.jsx └── uniqueId.js └── tests ├── head.jsx ├── setup.js └── table.jsx /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/README.md -------------------------------------------------------------------------------- /example/basic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/example/basic.jsx -------------------------------------------------------------------------------- /example/example.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/example/example.config.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/example/index.html -------------------------------------------------------------------------------- /example/server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/example/server.config.js -------------------------------------------------------------------------------- /mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/mocha.opts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/package.json -------------------------------------------------------------------------------- /src/head.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/src/head.jsx -------------------------------------------------------------------------------- /src/rows.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/src/rows.jsx -------------------------------------------------------------------------------- /src/table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/src/table.jsx -------------------------------------------------------------------------------- /src/uniqueId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/src/uniqueId.js -------------------------------------------------------------------------------- /tests/head.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/tests/head.jsx -------------------------------------------------------------------------------- /tests/setup.js: -------------------------------------------------------------------------------- 1 | require("babel/register")({ 2 | stage: 0 3 | }); 4 | -------------------------------------------------------------------------------- /tests/table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/table/HEAD/tests/table.jsx --------------------------------------------------------------------------------