I want to use the experimental component given <he...
# compose
h
I want to use the experimental component given here, how do i determine what i should add as a dependency in build.gradle.kts?
e
it's not published as a binary artifact, you need to build it from source yourself if you want to use it
h
does that mean i just copy paste the code into a local file and use the composable fun like that?
p
Basically yeah, the code and any dependency it might have
e
you could set it up as an Gradle included build, or modify it to add publishing, but it'll be easier to copy
h
thanks