I'm creating react project and want use @carbon/react and want to play around with grid component.
as per https://react.carbondesignsystem.com/?path=/docs/elements-grid--default#overview you can use grid like shown below.(and other components of carbon design system as well)
import { Grid, Column } from '@carbon/react';
function MyComponent() {
return (
<Grid>
<Column as="article">Example content</Column>
<Column as="article">Example content</Column>
<Column as="article">Example content</Column>
<Column as="article">Example content</Column>
</Grid>
);
}
Problem: Not able to install @carbon/react properly and somehow able to install getting many problems with it.
Tried below things.
List of Problems got while installing @carbon/react:
npm install @carbon/react. (when react and react-dom version are 18.2.0)
npm install @carbon/react. (when react and react-dom version are 17.0.1), now its installed. but ran into node-sass problem (for npm run start).
Then installed node-sass after that below issue occurred for npm run start.
Got this error too: Can't resolve 'react-dom/client' in '/home/abhijeet/ABHIJEET/Demo-Projects/React-Projects/react-carbon-grid/src'
Expected: How to use @carbon/react for Grid component. or GitHub repo where I will get the @carbon/react Grid Demo.
use
npm install @carbon/react --force
ornpm install @carbon/react --legacy-peer-deps