Develop Secure Code
View Components in Setup
CRM Analytics Dashboards
Create Components for Forecasts Pages
Form Factors
Lightning Console Apps
Open Files
Outlook and Gmail
Standalone Apps
Use Mobile Device Features
Utility Bar
Visualforce Pages
You can use custom Lightning web components in a standalone Aura app. Standalone apps are also called Lightning apps in the Developer Console.
The naming convention to reference a Lightning web component is <namespace:camelCaseComponentName>, which is the same as the naming convention for usage of a Lightning web component in an Aura component.
This standalone Aura app uses the myComponent Lightning web component in the default c namespace.
1<!-- sampleApp.app -->
2<aura:application>
3 <c:myComponent />
4</aura:application>See Also