forked from ddrilling/asb_cloud_front
Ошибки исправлены
This commit is contained in:
parent
183017a72d
commit
b1e4fe05c2
@ -1,4 +1,4 @@
|
|||||||
import { HTMLAttributes, ReactNode } from 'react'
|
import { HTMLAttributes } from 'react'
|
||||||
|
|
||||||
import Loader from './Loader'
|
import Loader from './Loader'
|
||||||
|
|
||||||
|
@ -9,26 +9,27 @@ import {
|
|||||||
FundProjectionScreenOutlined,
|
FundProjectionScreenOutlined,
|
||||||
} from '@ant-design/icons'
|
} from '@ant-design/icons'
|
||||||
import { Link, Redirect, Route, Switch, useParams } from 'react-router-dom'
|
import { Link, Redirect, Route, Switch, useParams } from 'react-router-dom'
|
||||||
import { PrivateMenuItem } from '../components/Private'
|
|
||||||
import TelemetryView from './TelemetryView'
|
import { PrivateMenuItem } from '@components/Private'
|
||||||
import Messages from './Messages'
|
|
||||||
import Report from './Report'
|
import Report from './Report'
|
||||||
import Archive from './Archive'
|
import Archive from './Archive'
|
||||||
import Documents from './Documents'
|
|
||||||
import Measure from './Measure'
|
import Measure from './Measure'
|
||||||
|
import Messages from './Messages'
|
||||||
|
import Documents from './Documents'
|
||||||
|
import TelemetryView from './TelemetryView'
|
||||||
|
import { makeMenuItems } from './Documents'
|
||||||
import WellOperations from './WellOperations'
|
import WellOperations from './WellOperations'
|
||||||
|
import DrillingProgram from './DrillingProgram'
|
||||||
import TelemetryAnalysis from './TelemetryAnalysis'
|
import TelemetryAnalysis from './TelemetryAnalysis'
|
||||||
import { makeMenuItems } from './Documents/'
|
|
||||||
import DrillingProgram from './Documents/DrillingProgram'
|
|
||||||
|
|
||||||
const { Content } = Layout
|
const { Content } = Layout
|
||||||
|
const { SubMenu } = Menu
|
||||||
|
|
||||||
export default function Well() {
|
export const Well = () => {
|
||||||
const { idWell, tab } = useParams()
|
const { idWell, tab } = useParams()
|
||||||
const rootPath = `/well/${idWell}`
|
const rootPath = `/well/${idWell}`
|
||||||
|
|
||||||
const { SubMenu } = Menu
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Layout>
|
<Layout>
|
||||||
<Menu
|
<Menu
|
||||||
@ -114,3 +115,5 @@ export default function Well() {
|
|||||||
</Layout>
|
</Layout>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export default Well
|
||||||
|
Loading…
Reference in New Issue
Block a user