| package cm.ben.android.bazel.compose.example.ui | |
| import android.os.Bundle | |
| import androidx.appcompat.app.AppCompatActivity | |
| import androidx.compose.material.Text | |
| import androidx.compose.runtime.Composable | |
| import androidx.compose.ui.platform.setContent | |
| class MainActivity : AppCompatActivity() { | |
| override fun onCreate(savedInstanceState: Bundle?) { | |
| super.onCreate(savedInstanceState) | |
| setContent { | |
| Greeting("world") | |
| } | |
| } | |
| } | |
| @Composable | |
| fun Greeting(name: String) = Text(text = "Hello $name!") |