Skip to content

Commit

Permalink
use named export
Browse files Browse the repository at this point in the history
  • Loading branch information
barbalex committed Oct 28, 2024
1 parent 336a51f commit c6e4991
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const Img = styled.img`
max-width: inherit;
`

const More = ({ saveToDb, row }) => {
export const More = observer(({ saveToDb, row }) => {
const jungpflanzenVorhandenOnSaveFalse = useCallback(() => {
const fakeEvent = {
target: {
Expand Down Expand Up @@ -229,6 +229,4 @@ const More = ({ saveToDb, row }) => {
<VeghoeheMinLabel>(Minimum)</VeghoeheMinLabel>
</Container>
)
}

export default observer(More)
})
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Headdata } from './Headdata/index.jsx'
import { Date } from './Date.jsx'
import { Map } from './Map.jsx'
import { Cover } from './Cover.jsx'
import More from './More.jsx'
import { More } from './More.jsx'
import Danger from './Danger.jsx'
import Remarks from './Remarks.jsx'
import EkfRemarks from './EkfRemarks.jsx'
Expand Down

0 comments on commit c6e4991

Please sign in to comment.