function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Lightning Edition SchlesingerLightning Edition Schlesinger 

Stuck at step #8 (and I've been using my own namespace)

Hi all,

I'm stuck at step #8.  When I go to save the component to work inside the app I receive the following error message:

User-added image

Thanks for any help.
kaustav goswamikaustav goswami
You have misplaced the tags a little I think.

In line number 4 you have

<aura:application>
Then you have <das1:hello/>
The you need to close the last tag you opened like -
</aura:application>

You have written <aura:application/> The slash will be infront.

Thanks,
Kaustav
Mark Leonard 8Mark Leonard 8
There is a typo in the quick start. The last line of code should be </aura:application> instead of <aura:application />.

Your code should be:
<aura:application>
    <das1:hello />
</aura:application>

where das1 is your namespace.
Note that there is only one <aura:appication> tag. Step 8 is just replacing the previous <h1> line of markup with a reference to your hello component.