If one uses the ionic cli to generate a component
ionic g component foobar
And then tries to use that selector
<foobar></foobar>
There is an error
Error: Template parse errors: 'foobar' is not a known element:
This is without any changes at all made to the code.
In the generated .ts
file there is a suggested link for more details
/**
* Generated class for the FoobarComponent component.
*
* See https://angular.io/docs/ts/latest/api/core/index/ComponentMetadata-class.html
* for more info on Angular Components.
*/
But this just navigates to a 404 page.
Anyone know if this is a known issue and if there is a workaround?