Skip to content

Commit

Permalink
import using complete path
Browse files Browse the repository at this point in the history
  • Loading branch information
barbalex committed May 14, 2024
1 parent 5d35cd0 commit 9f53834
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
StyledCardActions,
CardActionIconButton,
} from '../index.jsx'
import { StyledCardContent } from './index'
import { StyledCardContent } from './index.jsx'

const CsvInExcelOeffnen = () => {
const [expanded, setExpanded] = useState(false)
Expand Down
2 changes: 1 addition & 1 deletion src/components/Projekte/Exporte/Tipps/CsvOeffnen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
StyledCardActions,
CardActionIconButton,
} from '../index.jsx'
import { StyledCardContent } from './index'
import { StyledCardContent } from './index.jsx'

const CsvOeffnen = () => {
const [expanded, setExpanded] = useState(false)
Expand Down
4 changes: 2 additions & 2 deletions src/components/Projekte/Exporte/Tipps/CsvProgramm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import Collapse from '@mui/material/Collapse'
import Icon from '@mui/material/Icon'
import { MdExpandMore as ExpandMoreIcon } from 'react-icons/md'

import CsvInExcelOeffnen from './CsvInExcelOeffnen'
import CsvInExcelOeffnen from './CsvInExcelOeffnen.jsx'
import {
CardActionTitle,
StyledCard,
StyledCardActions,
CardActionIconButton,
} from '../index.jsx'
import { StyledCardContent } from './index'
import { StyledCardContent } from './index.jsx'

const CsvOeffnen = () => {
const [expanded, setExpanded] = useState(false)
Expand Down
2 changes: 1 addition & 1 deletion src/components/Projekte/Exporte/Tipps/DatenChaotisch.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
StyledCardActions,
CardActionIconButton,
} from '../index.jsx'
import { StyledCardContent } from './index'
import { StyledCardContent } from './index.jsx'

const DatenChaotisch = () => {
const [expanded, setExpanded] = useState(false)
Expand Down
10 changes: 5 additions & 5 deletions src/components/Projekte/Exporte/Tipps/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import Icon from '@mui/material/Icon'
import { MdExpandMore as ExpandMoreIcon } from 'react-icons/md'
import styled from '@emotion/styled'

import WasIstCsv from './WasIstCsv'
import CsvOeffnen from './CsvOeffnen'
import CsvProgramm from './CsvProgramm'
import DatenChaotisch from './DatenChaotisch'
import ZuVieleDaten from './ZuVieleDaten'
import WasIstCsv from './WasIstCsv.jsx'
import CsvOeffnen from './CsvOeffnen.jsx'
import CsvProgramm from './CsvProgramm.jsx'
import DatenChaotisch from './DatenChaotisch.jsx'
import ZuVieleDaten from './ZuVieleDaten.jsx'
import {
CardActionTitle,
StyledCard,
Expand Down

0 comments on commit 9f53834

Please sign in to comment.