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
Tobias Letzner 5Tobias Letzner 5 

my lwc component is not visible in my org??

Hii,
I have created a LWC component and deployed to my org. I want to use that component in home page. But page edit section i can't see my lwc component but my aura components is showing there why ??
I have create a demo lwc component and only edit the html file.
Can any one help me i am not able to recognised why this is not showing?? 
Best Answer chosen by Tobias Letzner 5
Malika Pathak 9Malika Pathak 9
Hii Tobias Letzner,

In your component, there is an XML file you have to copy this code and paste on it.
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
    <apiVersion>51.0</apiVersion>
    <isExposed>true</isExposed>
    <targets>
        <target>lightning__RecordPage</target>
        <target>lightning__HomePage</target>
       <target>lightning__AppPage</target>
    </targets>
</LightningComponentBundle>


// you can use another target under the <targets> tag where you want to use it.
if you having a problem then Ask me 
Please mark Best Answer If Your Problem Is Solved
thanks, Regards,
Malika Pathak