UNPKG

tuns-mobile-components

Version:

Tuns Design UI

26 lines (22 loc) 485 B
import React from "react"; import Order from "../../../components/mobile/src/order"; class OrderDemo extends React.Component { constructor(props) { super(props); this.state = { status: 1, money: 1888.845, scale: 2, }; } render() { const { status, money, scale } = this.state; return ( <div> <h2>OrderDemo</h2> <Order status={status} money={money} scale={scale} /> </div> ); } } export default OrderDemo;