Added simple feature UI components and insertion dialog

This commit is contained in:
Stefan Zermatten
2019-02-25 15:38:57 +02:00
parent e5ff116208
commit b7a4a3d3fa
23 changed files with 579 additions and 93 deletions

View File

@@ -1,6 +1,3 @@
import SimpleSchema from 'simpl-schema';
import schema from '/imports/api/schema.js';
const ColorSchema = ({optional = false} = {}) => ({
type: String,
defaultValue: "#9E9E9E",

View File

@@ -0,0 +1,6 @@
const OrderSchema = () => ({
type: Number,
index: true,
});
export default OrderSchema;