You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
validator/demo.js

11 lines
239 B

import * as riot from 'riot'
import Demo from './demo.riot'
import FieldError from './src/field-error.riot'
riot.register('field-error', FieldError)
riot.mount('field-error')
// let it rain
riot.register('demo', Demo)
riot.mount('demo')