update adding demo app,

This commit is contained in:
louiscklaw
2025-06-04 14:46:31 +08:00
parent b78709db9b
commit dff07ddcb0
82 changed files with 3552 additions and 97 deletions

View File

@@ -64,6 +64,8 @@ import ServiceAgreement from './pages/ServiceAgreement';
import paths from './paths';
import PrivacyAgreement from './pages/PrivacyAgreement';
import AppRoute from './AppRoute';
import DemoReactShop from './pages/DemoReactShop';
import DemoWeatherApp from './pages/WeatherDemo';
setupIonicReact();
@@ -121,6 +123,8 @@ const IonicApp: React.FC<IonicAppProps> = ({
{/* */}
<Route path="/tabs" render={() => <MainTabs />} />
<Route path={paths.DEMO_REACT_SHOP} render={() => <DemoReactShop />} />
<Route path={paths.DEMO_WEATHER_APP} render={() => <DemoWeatherApp />} />
{/* */}
<Route path="/account" component={Account} />