Skip to content

Commit

Permalink
fix: Export from React
Browse files Browse the repository at this point in the history
  • Loading branch information
LautaroPetaccio committed Mar 12, 2024
1 parent cf7c818 commit 901a707
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react'
import { Component } from 'react'
import { t } from 'decentraland-dapps/dist/modules/translation/utils'
import { Center } from 'decentraland-ui'
import { State } from './ErrorBoundary.types'

export default class ErrorBoundary extends React.Component<unknown, State> {
export default class ErrorBoundary extends Component<unknown, State> {
constructor(props: unknown) {
super(props)
this.state = { hasError: false }
Expand Down

0 comments on commit 901a707

Please sign in to comment.