empty form component

This commit is contained in:
Rimian Perkins 2019-08-27 19:56:55 +10:00
parent 14b8c1f1a8
commit f49c0c89a3
3 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,4 @@
export default Ember.Component.extend({
});

View File

@ -0,0 +1,2 @@
hello world

View File

@ -0,0 +1,11 @@
import componentTest from 'helpers/component-test';
moduleForComponent('donation-form', { integration: true });
componentTest('donation form', {
template: `{{donation-form}}`,
test(assert) {
assert.ok(true);
}
});