AngularJS: Move angular stuff into app/angular (#41415)

* Moving more angular parts

* Moving more angular stuff

* Moving components

* Move more things
This commit is contained in:
Torkel Ödegaard
2021-11-08 18:41:04 +01:00
committed by GitHub
parent 54de1078c8
commit d07fa0ce5e
44 changed files with 64 additions and 119 deletions

View File

@@ -1,10 +1,11 @@
import React, { FC } from 'react';
import { connect } from 'react-redux';
import UserInviteForm from './UserInviteForm';
import { contextSrv, NavModel } from 'app/core/core';
import { contextSrv } from 'app/core/core';
import { getNavModel } from 'app/core/selectors/navModel';
import { StoreState } from 'app/types/store';
import Page from 'app/core/components/Page/Page';
import { NavModel } from '@grafana/data';
interface Props {
navModel: NavModel;