Skip to content

Commit

Permalink
update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
Andarist committed Dec 15, 2024
1 parent 6003921 commit bd1f6e1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import 'react-app-polyfill/ie11'
import 'react-app-polyfill/stable'
import React from 'react'
import ReactDOM from 'react-dom'
import { createRoot } from 'react-dom/client'
import App from './App'
ReactDOM.render(<App />, document.getElementById('root'))
createRoot(document.getElementById('root')).render(<App />)
↓ ↓ ↓ ↓ ↓ ↓
Expand All @@ -18,10 +18,10 @@ ReactDOM.render(<App />, document.getElementById('root'))
import 'react-app-polyfill/ie11';
import 'react-app-polyfill/stable';
import React from 'react';
import ReactDOM from 'react-dom';
import { createRoot } from 'react-dom/client';
import App from './App';
import { jsx as ___EmotionJSX } from "@emotion/react";
ReactDOM.render(<App />, document.getElementById('root'));"
createRoot(document.getElementById('root')).render(<App />);"
`;

exports[`@emotion/babel-plugin-jsx-pragmatic fragment-only 1`] = `
Expand Down

0 comments on commit bd1f6e1

Please sign in to comment.