12 lines
195 B
Plaintext
12 lines
195 B
Plaintext
|
|
import { Layout } from '../components/layout/Index'
|
||
|
|
|
||
|
|
@Component
|
||
|
|
@Entry
|
||
|
|
struct LineMonitor {
|
||
|
|
build() {
|
||
|
|
Column() {
|
||
|
|
Layout({ mode: 2 }) {
|
||
|
|
}
|
||
|
|
}.width("100%").height("100%")
|
||
|
|
}
|
||
|
|
}
|