@@ -40,6 +40,8 @@ import SetActivity from './pages/SetActivity';
40
40
import UserSettingsGetLocale from './pages/UserSettingsGetLocale' ;
41
41
import Search from './components/Search' ;
42
42
import { useState } from 'react' ;
43
+ import GetActivityInstance from "./pages/GetActivityInstance" ;
44
+ import CloseActivity from "./pages/CloseActivity" ;
43
45
44
46
// Add contexts here
45
47
export default function App ( ) : React . ReactElement {
@@ -71,6 +73,11 @@ const routes: Record<string, AppRoute> = {
71
73
name : 'Encourage Hardware Acceleration' ,
72
74
component : EncourageHardwareAcceleration ,
73
75
} ,
76
+ closeActivity : {
77
+ path : '/close-activity' ,
78
+ name : 'Close Activity' ,
79
+ component : CloseActivity ,
80
+ } ,
74
81
getChannel : {
75
82
path : '/get-channel' ,
76
83
name : 'Get Channel' ,
@@ -91,6 +98,11 @@ const routes: Record<string, AppRoute> = {
91
98
name : 'Get Instance Connected Participants' ,
92
99
component : GetInstanceConnectedParticipants ,
93
100
} ,
101
+ getActivityInstance : {
102
+ path : '/get-activity-instance' ,
103
+ name : 'Get Activity Instance' ,
104
+ component : GetActivityInstance ,
105
+ } ,
94
106
getPlatformBehaviors : {
95
107
path : '/get-platform-behaviors' ,
96
108
name : 'Get Platform Behaviors' ,
0 commit comments