My AngularJS project (version 1.4.9) is built using ui-router and contains multiple states defined as follows:
.state('overview', {
url: '/overview',
parent: 'dashboard',
templateUrl: 'views/dashboard/overview.html'
})
.state('settings', {
url: '/settings',
parent: 'dashboard',
templateUrl: 'settings/views/index.html',
controller: "SettingsCtrl"
})
Now, I am looking to integrate ng-admin (version 0.9.1) into this project. I have successfully tested it as a standalone application with an independent HTML file following the instructions in the documentation. However, I am struggling to find a way to seamlessly add it to my current project.