From 68244c921b2d51bdfacf1364c51583e755f955a4 Mon Sep 17 00:00:00 2001 From: Philip Wedemann <22521688+hfhbd@users.noreply.github.com> Date: Fri, 1 Jul 2022 12:05:56 +0200 Subject: [PATCH] Docs: Js only projects are now supported (#2154) See #1851 --- tutorials/Web/README.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tutorials/Web/README.md b/tutorials/Web/README.md index 774108f4a1..c7d81e00c5 100644 --- a/tutorials/Web/README.md +++ b/tutorials/Web/README.md @@ -103,14 +103,3 @@ sourceSets { ### Module `compose.web.widgets` (Deprecated) It provides a collection of Composable components (based on compose.web.core) which try to conform to the API and behaviour of some widgets from Jetpack Compose UI: `Column`, `Row`, etc. - -## Important notes - -#### Kotlin MPP gradle plugin needs to be applied -``` kotlin -plugins { - kotlin("multiplatform") - id("org.jetbrains.compose") -} -``` -Compose for Web can be used only with kotlin multiplatform plugin applied. Otherwise, Compose plugin won't be configured properly.