I have react 18 and cant get this code to work. [1]: https://codesandbox.io/s/react-grid-gallery-forked-v3jv6z?file=/src/index.js Copied everything from the source. Just without this part:
const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
cos I am exporting it and then importing to the main one. No error messages, but gallery just wont show. The only difference is that i imported like this:
import {Gallery} from "react-grid-gallery";
not like import Gallery from "react-grid-gallery";
cos otherwise i was getting errors Can u pls try end and tell me if it works for ya? Am i missing something?