12 lines
195 B
Plaintext
Raw Normal View History

2025-09-23 16:46:30 +08:00
import { Layout } from '../components/layout/Index'
@Component
@Entry
struct LineMonitor {
build() {
Column() {
Layout({ mode: 2 }) {
}
}.width("100%").height("100%")
}
}