class Box { constructor() { } onMount() { } render() { return nativeElement('box', this.props, this.styles, this.children) } } class Text { constructor() { } onMount() { } render() { return nativeElement('text', this.props, this.styles, []) } } class Button { constructor() { } onMount() { } render() { return nativeElement('button', this.props, this.styles, []) } } class Tabs { constructor() { } onMount() { } render() { return nativeElement('tabs', this.props, this.styles, this.children) } } class PrimaryTab { constructor() { } onMount() { } render() { return nativeElement('primary-tab', this.props, this.styles, this.children) } } class Food { constructor() { this.state = { count: this.props.food.count } } onMount() { } render() { return (