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 9f53834 commit 1c6d29b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/components/Projekte/Exporte/Anwendung.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
StyledCardActions,
CardActionIconButton,
DownloadCardButton,
} from './index'
} from './index.jsx'

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

const StyledFormControlLabel = styled(FormControlLabel)`
margin-left: 0 !important;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Projekte/Exporte/Tipps/WasIstCsv.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 WasIstCsv = () => {
const [expanded, setExpanded] = useState(false)
Expand Down
2 changes: 1 addition & 1 deletion src/components/Projekte/Exporte/Tipps/ZuVieleDaten.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 ZuVieleDaten = () => {
const [expanded, setExpanded] = useState(false)
Expand Down
18 changes: 9 additions & 9 deletions src/components/Projekte/Exporte/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ import CardActions from '@mui/material/CardActions'
import IconButton from '@mui/material/IconButton'

import FormTitle from '../../shared/FormTitle/index.jsx'
import Tipps from './Tipps'
import Ap from './Ap'
import Populationen from './Populationen'
import Teilpopulationen from './Teilpopulationen'
import Kontrollen from './Kontrollen'
import Massnahmen from './Massnahmen'
import Beobachtungen from './Beobachtungen'
import Anwendung from './Anwendung'
import Optionen from './Optionen'
import Tipps from './Tipps/index.jsx'
import Ap from './Ap/index.jsx'
import Populationen from './Populationen/index.jsx'
import Teilpopulationen from './Teilpopulationen/index.jsx'
import Kontrollen from './Kontrollen/index.jsx'
import Massnahmen from './Massnahmen/index.jsx'
import Beobachtungen from './Beobachtungen/index.jsx'
import Anwendung from './Anwendung.jsx'
import Optionen from './Optionen.jsx'
import ErrorBoundary from '../../shared/ErrorBoundary.jsx'

const Container = styled.div`
Expand Down

0 comments on commit 1c6d29b

Please sign in to comment.