react 클론

윰이다·2022년 9월 22일
0

리액트

목록 보기
2/2
import React from "react";
import storeItems from "../data/items.json"
import {Col,Row} from "react-bootstrap"
export function Store(){

    return (
        <>
        <h1>Store</h1>
        <Row md={2} cs={1} lg={3} className="g-3">
            {storeItems.map(item =>(
                <Col>
                {JSON.stringify(item)}
                </Col>
            ))}

        </Row>
        </>
    )
}

0개의 댓글