File tree Expand file tree Collapse file tree 5 files changed +9
-23
lines changed
shared/src/commonMain/kotlin/org/patchnote/patchnote Expand file tree Collapse file tree 5 files changed +9
-23
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -34,4 +34,6 @@ plugins {
3434
3535include(" :composeApp" )
3636include(" :server" )
37- include(" :shared" )
37+ include(" :shared" )
38+ include(" :webApp" )
39+ include(" :iosApp" )
Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ class Greeting {
99 private val platform = getPlatform()
1010
1111 fun greet (): String {
12- return " Hello , ${platform.name} !"
12+ return " 테스테스트 You , ${platform.name} !"
1313 }
1414}
Original file line number Diff line number Diff line change 44 "description" : " Web application that uses Kotlin Multiplatform Library" ,
55 "type" : " module" ,
66 "scripts" : {
7- "dev " : " vite " ,
8- "build " : " vite build" ,
9- "preview " : " vite preview "
10- },
7+ "build:shared " : " cd .. && ./gradlew :shared:build " ,
8+ "dev " : " npm run build:shared && vite " ,
9+ "build " : " npm run build:shared && vite build "
10+ },
1111 "dependencies" : {
1212 "react" : " ^18.2.0" ,
1313 "react-dom" : " ^18.2.0" ,
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export function Greeting() {
2828 return (
2929 < div className = "greeting-container" >
3030 < button onClick = { handleClick } className = "greeting-button" >
31- Click me!
31+ 터치하세요
3232 </ button >
3333
3434 { isVisible && (
You can’t perform that action at this time.
0 commit comments