1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(unused_imports)]

use pax_lang::api::*;
use pax_lang::*;
use pax_std::components::Stacker;
use pax_std::primitives::{Frame, Group, Image, Rectangle, Scroller, Text};
use pax_std::types::{Color, Fill, LinearGradient, StackerDirection};

#[derive(Pax)]
#[file("website_mobile.pax")]
pub struct WebsiteMobile {
}


impl WebsiteMobile {
}