blob: ff9f9fe7b3c86e29bc34398e6971f849f5462536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import React from 'react'
import AppNavbarComponent from '../../components/navigation/AppNavbarComponent'
import { useActiveProjectId, useProject } from '../../data/project'
const AppNavbarContainer = (props) => {
const projectId = useActiveProjectId()
const { data: project } = useProject(projectId)
return <AppNavbarComponent {...props} project={project} />
}
export default AppNavbarContainer
|