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

@@ -10,6 +10,9 @@ import Favourites from './pages/Favourites';
import MyProfile from './pages/MyProfile';
import EventList from './pages/EventList';
import Helloworld from './pages/Helloworld';
// import WeatherDemo from './pages/WeatherDemo/Tab1';
import DemoList from './pages/DemoList';
// import DemoReactShop from './pages/DemoReactShop';
const TabAppRoute: React.FC = () => {
return (
@@ -33,6 +36,12 @@ const TabAppRoute: React.FC = () => {
{/* */}
<Route path={paths.PROFILE} render={() => <MyProfile />} exact={true} />
{/* */}
<Route path="/tabs/demo-list" render={() => <DemoList />} exact={true} />
{/* */}
<Route path="/tabs/helloworld" render={() => <Helloworld />} exact={true} />
</>
);
};