You need to sign in to do that
Don't have an account?
MikeGill
Cannot validate Creating Components challenge
Hello,
Getting this:
Challenge not yet complete... here's what's wrong:
The component does not implement the 'appHostable' interface. That interface is required to add the component to Salesforce1.
My component looks like this
Getting this:
Challenge not yet complete... here's what's wrong:
The component does not implement the 'appHostable' interface. That interface is required to add the component to Salesforce1.
My component looks like this
<aura:component implements="force:appHostable"> <h1 class="headline">Hello Trailhead</h1> </aura:component>
<!-- helloWorld.cmp -->
<aura:component implements="force:appHostable">
<h1>Hello Lightning Component!</h1>
<div class="headline"></div>
</aura:component
___________________________________________
CSS
.THIS.headline {
font-size: 24px;
}
did you get yours working?
I had the exact same problem. Deleting the tab, then the whole component and recreating everything solved the problem.
Thank you
David
Make sure you're creating the css from MyLightningComponent or MyLightningComponent.cmp tab not from MyLightningApp or MyLightningApp.app tab.