diff --git a/composeApp/src/jsMain/kotlin/net/codinux/banking/ui/Platform.js.kt b/composeApp/src/jsMain/kotlin/net/codinux/banking/ui/Platform.js.kt new file mode 100644 index 0000000..2ef636e --- /dev/null +++ b/composeApp/src/jsMain/kotlin/net/codinux/banking/ui/Platform.js.kt @@ -0,0 +1,10 @@ +package net.codinux.banking.ui + +class JsPlatform: Platform { + override val name: String = "Web with Kotlin/Js" + + override val type: PlatformType = PlatformType.Web + +} + +actual fun getPlatform(): Platform = JsPlatform() \ No newline at end of file