Closed hamza-nb closed 4 years ago
I cannot know your implementation.
See this link please ----> https://codesandbox.io/s/wonderful-morse-mfzeu?file=/src/App.js
Grid does not have fixed size, it depend on size of the container and will automatically fill all available space.
import React from "react";
import Main from "./components/main";
export default function App() {
return (
<div style={{ height: '90vh', width: '90vw' }}>
<Main />
</div>
);
}
Hey, please help me, I have another problem with this example ---> https://codesandbox.io/s/wonderful-morse-mfzeu?file=/src/App.js
Grid does not have fixed size, it depend on size of the container and will automatically fill all available space.
import React from "react"; import Main from "./components/main"; export default function App() { return ( <div style={{ height: '90vh', width: '90vw' }}> <Main /> </div> ); }
Hey, please help me, I have another problem with this example ---> https://codesandbox.io/s/wonderful-morse-mfzeu?file=/src/App.js
CSS modules apparently do not work in codesandbox: className={Style.exampleContainer}
is not translated into actual web page. Install and develop in local environment.
i can't see the grid when i implemented it in my project