@Composable
fun TextButtonExample(onClick: () -> Unit) {
   
TextButton(
        onClick
= { onClick() }
   
) {
       
Text("Text Button")
   
}
}