pax_example/website_mobile.rs
1#![allow(unused_imports)]
2
3use pax_lang::api::*;
4use pax_lang::*;
5use pax_std::components::Stacker;
6use pax_std::primitives::{Frame, Group, Image, Rectangle, Scroller, Text};
7use pax_std::types::text::*;
8use pax_std::types::{Color, Fill, LinearGradient, StackerDirection};
9
10#[derive(Pax)]
11#[file("website_mobile.pax")]
12pub struct WebsiteMobile {
13}
14
15
16impl WebsiteMobile {
17}