Sign in
apache
/
hamilton
/
refs/heads/fix/sdk-code-display
/
.
/
ui
/
frontend
/
src
/
components
/
dashboard
/
Versions
/
VersionsOutlet.tsx
blob: 912c8d262544f562087e1a4248821006b6044ca2 [
file
] [
log
] [
blame
]
import
React
from
"react"
;
import
{
useData
as
useDashboardData
}
from
"../Dashboard"
;
import
Versions
from
"./Versions"
;
export
const
VersionsOutlet
=
()
=>
{
const
{
project
}
=
useDashboardData
();
return
<
Versions
project
={
project
}
/>;
};