chore: stop using alias imports

This commit is contained in:
Rafael Taranto 2025-05-13 07:30:38 +01:00
parent ad7a2eac4e
commit b48c590bc8
243 changed files with 1061 additions and 1080 deletions

View file

@ -1,7 +1,7 @@
import React, { memo } from 'react'
import { Link } from 'src/components/buttons'
import { TableCell as Td } from 'src/components/table'
import { Link } from '../buttons'
import { TableCell as Td } from './'
const EditCell = memo(({ save, cancel }) => (
<Td>

View file

@ -1,7 +1,7 @@
import classNames from 'classnames'
import React, { memo } from 'react'
import { H4 } from 'src/components/typography'
import EmptyTableIcon from 'src/styling/icons/table/empty-table.svg?react'
import { H4 } from '../typography'
import EmptyTableIcon from '../../styling/icons/table/empty-table.svg?react'
const EmptyTable = memo(({ message, className }) => {
return (