Files
honeyDueKMP/composeApp/src/wasmJsMain/kotlin/com/example/mycrib/Platform.wasmJs.kt
Trey t 78c62cfc52 Initial commit: Kotlin Multiplatform project setup
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-04 09:15:49 -06:00

7 lines
168 B
Kotlin

package com.example.mycrib
class WasmPlatform: Platform {
override val name: String = "Web with Kotlin/Wasm"
}
actual fun getPlatform(): Platform = WasmPlatform()