File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 11import { useCallback , useEffect , useMemo } from 'react' ;
2- import { useParams } from 'react-router-dom' ;
2+ import { Link , useParams } from 'react-router-dom' ;
33import { allChildActivities } from '../../lib/activities' ;
44import { useWCIF } from './WCIFProvider' ;
55import ActivityRow from '../../components/ActivitiyRow' ;
@@ -81,6 +81,14 @@ export default function Round() {
8181 </ div >
8282 </ div >
8383 ) ) }
84+ < hr className = "my-2" />
85+ < div className = "flex flex-row justify-between" >
86+ < Link
87+ to = { `/competitions/${ wcif ?. id } /rooms` }
88+ className = "w-full border bg-blue-200 rounded-md p-2 px-1 flex cursor-pointer hover:bg-blue-400 group transition-colors my-1 flex-row" >
89+ Back to list of Rooms
90+ </ Link >
91+ </ div >
8492 </ div >
8593 ) ;
8694}
You can’t perform that action at this time.
0 commit comments