Adding navigation inside cluster to CreateRecord page

I want to add navigation (as is in ListRecords page) to CreateRecord page, is it possible?
Solution
add this in the CreatePage

public function getSubNavigation(): array
{
    if (filled($cluster = static::getCluster())) {
        return $this->generateNavigationItems($cluster::getClusteredComponents());
    }

    return [];
}
Was this page helpful?