@Entry @Component struct Index { @State message: string = 'test pip node controller'; build() { Row() { Column() { Text(this.message) .fontSize(50) .fontWeight(FontWeight.Bold) } .width('100%') } .height('100%') } }