declarative syntax ,you can describe the desired UI and its behavior using a series of structured statements rather than imperatively defining each individual UI element
const Layout = VStack(
text('aaaa'),
text('bbbb').click(xxxxx),
view('cccc').click().margin().padding().styles({})
);
// for react
export default () => <Layout />;