Browse Source

Update compose-web `Getting Started` tutorial with a new kotlin and compose versions

pull/696/head
Oleksandr Karpovich 3 years ago
parent
commit
809d83b137
  1. 6
      tutorials/Web/Getting_Started/README.md

6
tutorials/Web/Getting_Started/README.md

@ -42,8 +42,8 @@ pluginManagement {
```kotlin ```kotlin
// Add compose gradle plugin // Add compose gradle plugin
plugins { plugins {
kotlin("multiplatform") version "1.4.32" kotlin("multiplatform") version "1.5.0"
id("org.jetbrains.compose") version "0.0.0-web-dev-11" id("org.jetbrains.compose") version "0.0.0-web-dev-13"
} }
// Add maven repositories // Add maven repositories
@ -61,7 +61,7 @@ kotlin {
sourceSets { sourceSets {
val jsMain by getting { val jsMain by getting {
dependencies { dependencies {
implementation(compose.web.web) implementation(compose.web.core)
implementation(compose.runtime) implementation(compose.runtime)
} }
} }

Loading…
Cancel
Save