I made a private component and I am trying to get the user to tweak a couple of parameters I have exposed using custom parameters, while still keeping the component private.
How do I achieve that?
I made a private component and I am trying to get the user to tweak a couple of parameters I have exposed using custom parameters, while still keeping the component private.
How do I achieve that?
I would make all the user facing parameters public at the top level, and your inside private contents can fetch those values instead.
Cheers.