refactor: import components from '@coreui/react' instead of '@coreui/react-ts'
This commit is contained in:
parent
0de0637c4d
commit
caa46b8b91
@ -3,7 +3,7 @@ import { useLocation } from 'react-router-dom'
|
|||||||
|
|
||||||
import routes from '../routes'
|
import routes from '../routes'
|
||||||
|
|
||||||
import { CBreadcrumb, CBreadcrumbItem } from '@coreui/react-ts'
|
import { CBreadcrumb, CBreadcrumbItem } from '@coreui/react'
|
||||||
|
|
||||||
const AppBreadcrumb = () => {
|
const AppBreadcrumb = () => {
|
||||||
const currentLocation = useLocation().pathname
|
const currentLocation = useLocation().pathname
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { CFooter } from '@coreui/react-ts'
|
import { CFooter } from '@coreui/react'
|
||||||
|
|
||||||
const AppFooter = () => {
|
const AppFooter = () => {
|
||||||
return (
|
return (
|
||||||
@ -8,7 +8,7 @@ const AppFooter = () => {
|
|||||||
<a href="https://coreui.io" target="_blank" rel="noopener noreferrer">
|
<a href="https://coreui.io" target="_blank" rel="noopener noreferrer">
|
||||||
CoreUI
|
CoreUI
|
||||||
</a>
|
</a>
|
||||||
<span className="ms-1">© 2020 creativeLabs.</span>
|
<span className="ms-1">© 2021 creativeLabs.</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="ms-auto">
|
<div className="ms-auto">
|
||||||
<span className="me-1">Powered by</span>
|
<span className="me-1">Powered by</span>
|
||||||
|
@ -10,7 +10,7 @@ import {
|
|||||||
CHeaderToggler,
|
CHeaderToggler,
|
||||||
CNavLink,
|
CNavLink,
|
||||||
CNavItem,
|
CNavItem,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
|
@ -7,7 +7,7 @@ import {
|
|||||||
CSidebarNav,
|
CSidebarNav,
|
||||||
CSidebarToggler,
|
CSidebarToggler,
|
||||||
CCreateNavItem,
|
CCreateNavItem,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
|
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
|
|
||||||
@ -27,10 +27,8 @@ const AppSidebar = () => {
|
|||||||
show={sidebarShow}
|
show={sidebarShow}
|
||||||
onShow={() => console.log('show')}
|
onShow={() => console.log('show')}
|
||||||
onHide={() => {
|
onHide={() => {
|
||||||
console.log('hide')
|
|
||||||
dispatch({ type: 'set', sidebarShow: false })
|
dispatch({ type: 'set', sidebarShow: false })
|
||||||
}}
|
}}
|
||||||
// onShowChange={(val) => dispatch({type: 'set', sidebarShow: val })}
|
|
||||||
>
|
>
|
||||||
<CSidebarBrand className="d-md-down-none" to="/">
|
<CSidebarBrand className="d-md-down-none" to="/">
|
||||||
<CIcon className="sidebar-brand-full" name="logo-negative" height={35} />
|
<CIcon className="sidebar-brand-full" name="logo-negative" height={35} />
|
||||||
|
@ -8,7 +8,7 @@ import {
|
|||||||
CDropdownItem,
|
CDropdownItem,
|
||||||
CDropdownMenu,
|
CDropdownMenu,
|
||||||
CDropdownToggle,
|
CDropdownToggle,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
|
|
||||||
const AppHeaderDropdown = () => {
|
const AppHeaderDropdown = () => {
|
||||||
|
@ -6,8 +6,7 @@ import {
|
|||||||
CDropdownItem,
|
CDropdownItem,
|
||||||
CDropdownMenu,
|
CDropdownMenu,
|
||||||
CDropdownToggle,
|
CDropdownToggle,
|
||||||
CImage,
|
} from '@coreui/react'
|
||||||
} from '@coreui/react-ts'
|
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
|
|
||||||
const AppHeaderDropdownMssg = () => {
|
const AppHeaderDropdownMssg = () => {
|
||||||
|
@ -6,7 +6,7 @@ import {
|
|||||||
CDropdownMenu,
|
CDropdownMenu,
|
||||||
CDropdownToggle,
|
CDropdownToggle,
|
||||||
CProgress,
|
CProgress,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
|
|
||||||
const AppHeaderDropdownNotif = () => {
|
const AppHeaderDropdownNotif = () => {
|
||||||
|
@ -6,7 +6,7 @@ import {
|
|||||||
CDropdownMenu,
|
CDropdownMenu,
|
||||||
CDropdownToggle,
|
CDropdownToggle,
|
||||||
CProgress,
|
CProgress,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
|
|
||||||
const AppHeaderDropdownTasks = () => {
|
const AppHeaderDropdownTasks = () => {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React, { Suspense } from 'react'
|
import React, { Suspense } from 'react'
|
||||||
import { Redirect, Route, Switch } from 'react-router-dom'
|
import { Redirect, Route, Switch } from 'react-router-dom'
|
||||||
import { CContainer, CFade } from '@coreui/react-ts'
|
import { CContainer, CFade } from '@coreui/react'
|
||||||
|
|
||||||
// routes config
|
// routes config
|
||||||
import routes from '../routes'
|
import routes from '../routes'
|
||||||
@ -14,7 +14,7 @@ const loading = (
|
|||||||
const TheContent = () => {
|
const TheContent = () => {
|
||||||
return (
|
return (
|
||||||
<main className="c-main">
|
<main className="c-main">
|
||||||
<CContainer>
|
<CContainer lg>
|
||||||
<Suspense fallback={loading}>
|
<Suspense fallback={loading}>
|
||||||
<Switch>
|
<Switch>
|
||||||
{routes.map((route, idx) => {
|
{routes.map((route, idx) => {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { CLink } from '@coreui/react-ts'
|
import { CLink } from '@coreui/react'
|
||||||
|
|
||||||
const DocsLink = (props) => {
|
const DocsLink = (props) => {
|
||||||
const { name, text, ...rest } = props
|
const { name, text, ...rest } = props
|
||||||
|
@ -8,7 +8,7 @@ import {
|
|||||||
CCol,
|
CCol,
|
||||||
CRow,
|
CRow,
|
||||||
CLink,
|
CLink,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Breadcrumbs = () => {
|
const Breadcrumbs = () => {
|
||||||
|
@ -8,7 +8,7 @@ import {
|
|||||||
CCol,
|
CCol,
|
||||||
CFormCheck,
|
CFormCheck,
|
||||||
CRow,
|
CRow,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ import {
|
|||||||
CCarouselItem,
|
CCarouselItem,
|
||||||
CCol,
|
CCol,
|
||||||
CRow,
|
CRow,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const slides = [
|
const slides = [
|
||||||
|
@ -1,15 +1,5 @@
|
|||||||
import React, { useState } from 'react'
|
import React, { useState } from 'react'
|
||||||
import {
|
import { CButton, CCard, CCardBody, CCardHeader, CCol, CCollapse, CRow } from '@coreui/react'
|
||||||
CButton,
|
|
||||||
CCard,
|
|
||||||
CCardBody,
|
|
||||||
CCardFooter,
|
|
||||||
CCardHeader,
|
|
||||||
CCol,
|
|
||||||
CCollapse,
|
|
||||||
CFade,
|
|
||||||
CRow,
|
|
||||||
} from '@coreui/react-ts'
|
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Collapses = () => {
|
const Collapses = () => {
|
||||||
|
@ -22,7 +22,7 @@ import {
|
|||||||
CInputGroup,
|
CInputGroup,
|
||||||
CInputGroupText,
|
CInputGroupText,
|
||||||
CRow,
|
CRow,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { CButton, CCard, CCardBody, CCardHeader, CCol, CContainer, CRow } from '@coreui/react-ts'
|
import { CButton, CCard, CCardBody, CCardHeader, CCol, CContainer, CRow } from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Jumbotrons = () => {
|
const Jumbotrons = () => {
|
||||||
|
@ -10,7 +10,7 @@ import {
|
|||||||
CRow,
|
CRow,
|
||||||
CTabContent,
|
CTabContent,
|
||||||
CTabPane,
|
CTabPane,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const ListGroups = () => {
|
const ListGroups = () => {
|
||||||
|
@ -18,7 +18,7 @@ import {
|
|||||||
CNavLink,
|
CNavLink,
|
||||||
CDropdown,
|
CDropdown,
|
||||||
CButton,
|
CButton,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const CNavbars = () => {
|
const CNavbars = () => {
|
||||||
|
@ -12,7 +12,7 @@ import {
|
|||||||
CNav,
|
CNav,
|
||||||
CNavItem,
|
CNavItem,
|
||||||
CNavLink,
|
CNavLink,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Navs = () => {
|
const Navs = () => {
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
import React, { useState } from 'react'
|
import React from 'react'
|
||||||
import { CCard, CCardBody, CCardHeader, CPagination, CPaginationItem } from '@coreui/react-ts'
|
import { CCard, CCardBody, CCardHeader, CPagination, CPaginationItem } from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Paginations = () => {
|
const Paginations = () => {
|
||||||
const [currentPage, setCurrentPage] = useState(2)
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<CCard className="mb-4">
|
<CCard className="mb-4">
|
||||||
|
@ -1,14 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import {
|
import { CButton, CCard, CCardBody, CCardHeader, CLink, CPopover, CRow, CCol } from '@coreui/react'
|
||||||
CButton,
|
|
||||||
CCard,
|
|
||||||
CCardBody,
|
|
||||||
CCardHeader,
|
|
||||||
CLink,
|
|
||||||
CPopover,
|
|
||||||
CRow,
|
|
||||||
CCol,
|
|
||||||
} from '@coreui/react-ts'
|
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Popovers = () => {
|
const Popovers = () => {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { CCard, CCardBody, CCardHeader, CProgress, CProgressBar } from '@coreui/react-ts'
|
import { CCard, CCardBody, CCardHeader, CProgress, CProgressBar } from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const ProgressBar = () => {
|
const ProgressBar = () => {
|
||||||
|
@ -12,7 +12,7 @@ import {
|
|||||||
CTableHead,
|
CTableHead,
|
||||||
CTableHeaderCell,
|
CTableHeaderCell,
|
||||||
CTableRow,
|
CTableRow,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Tables = () => {
|
const Tables = () => {
|
||||||
|
@ -10,7 +10,7 @@ import {
|
|||||||
CCard,
|
CCard,
|
||||||
CCardBody,
|
CCardBody,
|
||||||
CCardHeader,
|
CCardHeader,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Tabs = () => {
|
const Tabs = () => {
|
||||||
|
@ -1,14 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import {
|
import { CButton, CCard, CCardBody, CCardHeader, CLink, CTooltip, CRow, CCol } from '@coreui/react'
|
||||||
CButton,
|
|
||||||
CCard,
|
|
||||||
CCardBody,
|
|
||||||
CCardHeader,
|
|
||||||
CLink,
|
|
||||||
CTooltip,
|
|
||||||
CRow,
|
|
||||||
CCol,
|
|
||||||
} from '@coreui/react-ts'
|
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Tooltips = () => {
|
const Tooltips = () => {
|
||||||
|
@ -16,7 +16,7 @@ import {
|
|||||||
CFormLabel,
|
CFormLabel,
|
||||||
CFormControl,
|
CFormControl,
|
||||||
CFormCheck,
|
CFormCheck,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const ButtonDropdowns = () => {
|
const ButtonDropdowns = () => {
|
||||||
|
@ -16,7 +16,7 @@ import {
|
|||||||
CInputGroup,
|
CInputGroup,
|
||||||
CInputGroupText,
|
CInputGroupText,
|
||||||
CRow,
|
CRow,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const ButtonGroups = () => {
|
const ButtonGroups = () => {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { CButton, CCard, CCardBody, CCardHeader, CCol, CRow } from '@coreui/react-ts'
|
import { CButton, CCard, CCardBody, CCardHeader, CCol, CRow } from '@coreui/react'
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { CCard, CCardBody, CCol, CCardHeader, CRow } from '@coreui/react-ts'
|
import { CCard, CCardBody, CCol, CCardHeader, CRow } from '@coreui/react'
|
||||||
import {
|
import {
|
||||||
CChartBar,
|
CChartBar,
|
||||||
CChartLine,
|
CChartLine,
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { CCard, CCardBody, CCardHeader, CCol, CRow } from '@coreui/react-ts'
|
import { CCard, CCardBody, CCardHeader, CCol, CRow } from '@coreui/react'
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
import { brandSet } from '@coreui/icons'
|
import { brandSet } from '@coreui/icons'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { CCard, CCardBody, CCardHeader, CRow } from '@coreui/react-ts'
|
import { CCard, CCardBody, CCardHeader, CRow } from '@coreui/react'
|
||||||
import { freeSet } from '@coreui/icons'
|
import { freeSet } from '@coreui/icons'
|
||||||
import { getIconsView } from '../brands/Brands.js'
|
import { getIconsView } from '../brands/Brands.js'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { CCard, CCardBody, CCardHeader, CRow } from '@coreui/react-ts'
|
import { CCard, CCardBody, CCardHeader, CRow } from '@coreui/react'
|
||||||
import { getIconsView } from '../brands/Brands.js'
|
import { getIconsView } from '../brands/Brands.js'
|
||||||
import { flagSet } from '@coreui/icons'
|
import { flagSet } from '@coreui/icons'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
@ -10,7 +10,7 @@ import {
|
|||||||
CLink,
|
CLink,
|
||||||
CProgress,
|
CProgress,
|
||||||
CRow,
|
CRow,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Alerts = () => {
|
const Alerts = () => {
|
||||||
|
@ -8,7 +8,7 @@ import {
|
|||||||
CCol,
|
CCol,
|
||||||
CBadge,
|
CBadge,
|
||||||
CRow,
|
CRow,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Badges = () => {
|
const Badges = () => {
|
||||||
|
@ -11,7 +11,7 @@ import {
|
|||||||
CModalHeader,
|
CModalHeader,
|
||||||
CModalTitle,
|
CModalTitle,
|
||||||
CRow,
|
CRow,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Modals = () => {
|
const Modals = () => {
|
||||||
|
@ -13,10 +13,8 @@ import {
|
|||||||
CCol,
|
CCol,
|
||||||
CFormLabel,
|
CFormLabel,
|
||||||
CToast,
|
CToast,
|
||||||
CToastBody,
|
|
||||||
CToastHeader,
|
|
||||||
CToaster,
|
CToaster,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Toaster = () => {
|
const Toaster = () => {
|
||||||
@ -35,10 +33,10 @@ const Toaster = () => {
|
|||||||
const [toasts, setToasts] = useState([
|
const [toasts, setToasts] = useState([
|
||||||
{ placement: 'static' },
|
{ placement: 'static' },
|
||||||
{ placement: 'static' },
|
{ placement: 'static' },
|
||||||
{ placement: 'top-right', autohide: 3000 },
|
{ placement: 'top-end', autohide: 3000 },
|
||||||
])
|
])
|
||||||
|
|
||||||
const [placement, setPlacement] = useState('top-right')
|
const [placement, setPlacement] = useState('top-end')
|
||||||
const [autohide, setAutohide] = useState(true)
|
const [autohide, setAutohide] = useState(true)
|
||||||
const [autohideValue, setAutohideValue] = useState(5000)
|
const [autohideValue, setAutohideValue] = useState(5000)
|
||||||
const [closeButton, setCloseButton] = useState(true)
|
const [closeButton, setCloseButton] = useState(true)
|
||||||
|
@ -12,7 +12,7 @@ import {
|
|||||||
CInputGroup,
|
CInputGroup,
|
||||||
CInputGroupText,
|
CInputGroupText,
|
||||||
CRow,
|
CRow,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
|
|
||||||
const Login = () => {
|
const Login = () => {
|
||||||
|
@ -7,7 +7,7 @@ import {
|
|||||||
CInputGroup,
|
CInputGroup,
|
||||||
CInputGroupText,
|
CInputGroupText,
|
||||||
CRow,
|
CRow,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
|
|
||||||
const Page404 = () => {
|
const Page404 = () => {
|
||||||
|
@ -7,7 +7,7 @@ import {
|
|||||||
CInputGroup,
|
CInputGroup,
|
||||||
CInputGroupText,
|
CInputGroupText,
|
||||||
CRow,
|
CRow,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
|
|
||||||
const Page500 = () => {
|
const Page500 = () => {
|
||||||
|
@ -11,7 +11,7 @@ import {
|
|||||||
CInputGroup,
|
CInputGroup,
|
||||||
CInputGroupText,
|
CInputGroupText,
|
||||||
CRow,
|
CRow,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
import CIcon from '@coreui/icons-react'
|
import CIcon from '@coreui/icons-react'
|
||||||
|
|
||||||
const Register = () => {
|
const Register = () => {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React, { useEffect, useState, createRef } from 'react'
|
import React, { useEffect, useState, createRef } from 'react'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
import { CRow, CCol, CCard, CCardHeader, CCardBody } from '@coreui/react-ts'
|
import { CRow, CCol, CCard, CCardHeader, CCardBody } from '@coreui/react'
|
||||||
import { rgbToHex } from '@coreui/utils'
|
import { rgbToHex } from '@coreui/utils'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { CCard, CCardHeader, CCardBody } from '@coreui/react-ts'
|
import { CCard, CCardHeader, CCardBody } from '@coreui/react'
|
||||||
import { DocsLink } from 'src/reusable'
|
import { DocsLink } from 'src/reusable'
|
||||||
|
|
||||||
const Typography = () => {
|
const Typography = () => {
|
||||||
|
@ -8,7 +8,7 @@ import {
|
|||||||
CWidgetProgress,
|
CWidgetProgress,
|
||||||
CWidgetProgressIcon,
|
CWidgetProgressIcon,
|
||||||
CWidgetSimple,
|
CWidgetSimple,
|
||||||
} from '@coreui/react-ts'
|
} from '@coreui/react'
|
||||||
|
|
||||||
import WidgetsBrand from './WidgetsBrand'
|
import WidgetsBrand from './WidgetsBrand'
|
||||||
import WidgetsDropdown from './WidgetsDropdown'
|
import WidgetsDropdown from './WidgetsDropdown'
|
||||||
|
Loading…
Reference in New Issue
Block a user