Skip to content

Commit

Permalink
chore: update all dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rpearce committed Jun 30, 2024
1 parent 1c1ef6a commit 0815a34
Show file tree
Hide file tree
Showing 3 changed files with 3,631 additions and 8,579 deletions.
5 changes: 3 additions & 2 deletions example/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint react/prop-types: 0 */

import React, { Component, createRef } from 'react'
import ReactDOM from 'react-dom'
import { createRoot } from 'react-dom/client'

import withForwardedRef from '../dist/esm'

Expand Down Expand Up @@ -31,4 +31,5 @@ class App extends Component {
}

const container = document.querySelector('[data-app]')
ReactDOM.render(<App />, container)
const root = createRoot(container)
root.render(<App />)
Loading

0 comments on commit 0815a34

Please sign in to comment.