From aed6c62da41a89787bacc2f54709291af5cf6eba Mon Sep 17 00:00:00 2001 From: John Otander Date: Tue, 22 May 2018 21:03:32 -0600 Subject: [PATCH] Add basic Iso example --- templates/iso/App.jsx | 6 ++++++ templates/iso/README.md | 1 + templates/iso/iso.config.js | 7 +++++++ templates/iso/package.json | 16 ++++++++++++++++ 4 files changed, 30 insertions(+) create mode 100644 templates/iso/App.jsx create mode 100644 templates/iso/README.md create mode 100644 templates/iso/iso.config.js create mode 100644 templates/iso/package.json diff --git a/templates/iso/App.jsx b/templates/iso/App.jsx new file mode 100644 index 00000000..21456ab8 --- /dev/null +++ b/templates/iso/App.jsx @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/templates/iso/README.md b/templates/iso/README.md new file mode 100644 index 00000000..b0b2bdcf --- /dev/null +++ b/templates/iso/README.md @@ -0,0 +1 @@ +# Kit + Iso diff --git a/templates/iso/iso.config.js b/templates/iso/iso.config.js new file mode 100644 index 00000000..4f2dbbb2 --- /dev/null +++ b/templates/iso/iso.config.js @@ -0,0 +1,7 @@ +const Rebass = require('rebass') +const Kit = require('@compositor/kit') + +module.exports = { + components: { Rebass, ...Kit }, + theme: Rebass.theme +} diff --git a/templates/iso/package.json b/templates/iso/package.json new file mode 100644 index 00000000..554587fe --- /dev/null +++ b/templates/iso/package.json @@ -0,0 +1,16 @@ +{ + "name": "iso", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "dependencies": { + "@compositor/kit": "^1.0.25", + "rebass": "^1.0.7" + } +}