diff --git a/js/components/forms/poc.js b/js/components/forms/poc.js deleted file mode 100644 index 2aff00ab..00000000 --- a/js/components/forms/poc.js +++ /dev/null @@ -1,29 +0,0 @@ -import FormMixin from '../../mixins/form' -import textinput from '../text_input' -import checkboxinput from '../checkbox_input' - -export default { - name: 'poc', - - mixins: [FormMixin], - - components: { - textinput, - checkboxinput, - }, - - props: { - initialData: { - type: Object, - default: () => ({}), - }, - }, - - data: function() { - const { am_poc = false } = this.initialData - - return { - am_poc, - } - }, -} diff --git a/js/index.js b/js/index.js index 3ed54260..7381c828 100644 --- a/js/index.js +++ b/js/index.js @@ -12,7 +12,6 @@ import optionsinput from './components/options_input' import multicheckboxinput from './components/multi_checkbox_input' import textinput from './components/text_input' import checkboxinput from './components/checkbox_input' -import poc from './components/forms/poc' import toggler from './components/toggler' import ApplicationEnvironments from './components/forms/new_application/environments' import MultiStepModalForm from './components/forms/multi_step_modal_form' @@ -47,7 +46,6 @@ const app = new Vue({ multicheckboxinput, textinput, checkboxinput, - poc, ApplicationEnvironments, BudgetChart, SpendTable,