'ChakraUI not rendering with create-react-app

UPDATE: I'm running into the following error

framer_motion__WEBPACK_IMPORTED_MODULE_5__.motion.custom is not a function

My app isn't rendering on localhost. I can 'hello world' my create react app, but as soon as I edit in ChakraProvider, I'm unable to view my 'hello world'. I have tried traversing my ChakraProvider tag and that hasn't worked either.

index.js

..imports..

ReactDOM.render(
 
  
      <React.StrictMode>
        <ChakraProvider>
          <App/>
        </ChakraProvider>
      </React.StrictMode>
      
    
,

  document.getElementById('root')
);

Are there



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source