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
Caleb KuesterCaleb Kuester 

Custom Developer Lighting Components in Admin-Made Pages

Greetings!

So I have developed a custom lightning component. Now, I would like to add it to one of the drag-and-drop pages. Fortunately, there's a section labeled "Custom Components." Unfortunately, it's empty, despite having coded a custom component within the org. 

How does this become resolved?
sfdcMonkey.comsfdcMonkey.com
hi Caleb Kuester
add implements attribute in your <aura:component> link below
<aura:component implements="flexipage:availableForAllPageTypes,force:appHostable,forceCommunity:availableForAllPageTypes" access="global">
now check in custom components section of lightning app builder
I hop it helps you
Mark it best answer if it helps you