React-Bootstrap 통합
5563 단어 reactbootstraptutorialjavascript
이 글은 Fiverr의 후원으로 작성되었습니다 - 추가 수입을 얻거나 전업 프리랜서가 되기 위한 프리랜서.
React를 다른 라이브러리나 프레임워크와 통합하는 것이 가능합니다. 예를 들어 React와 Bootstrap의 통합이 있습니다.
참고: 아래 설정은 향후 기사에서 사용되지 않습니다.
부트스트랩
Bootstrap is a front-end framework for building fast, responsive, mobile-first sites with ease.
Bootstrap은
npm
, yarn
등과 같이 선택한 패키지 관리자를 사용하여 React에 설치할 수 있습니다.@babel/runtime
를 설치합니다.npm install @babel/runtime bootstrap jquery popper.js reactstrap
App.js
import React from "react";
import { Card, Button, CardTitle, CardText, Row, Col } from "reactstrap";
import "bootstrap/dist/css/bootstrap.min.css";
const Bio = () => {
return (
<Row>
<Col sm="6" className="mx-auto w-75 mt-5">
<Card body>
<CardTitle tag="h5">Bello</CardTitle>
<CardText>
Hi, I am Bello Osagie, a web developer and freelancer. I teach web
development for free. So join me and have fun coding together!!!
</CardText>
<Button color="primary">Follow</Button>
</Card>
</Col>
</Row>
);
};
export default Bio;
행복한 코딩!!!
.ltag__user__id__428113 .follow-action-button {
배경색: #000000 !중요;
색상: #ffffff !중요;
테두리 색상: #000000 !중요;
}
벨로
Hi, I am Bello Osagie, a tech blogger, writer, and web developer. I teach web development for free… Join me to learn, discover, and have fun coding together!
테크스택 | 파이버
Fiverr가 후원하는 Techstack 기사:
Sign up 귀하의 비즈니스를 위한 완벽한 프리랜서 서비스를 찾거나 프리랜서가 되십시오.
Support 내가 하는 일과 계속해서 무료 콘텐츠를 만들도록 밀어붙이는 것.
Reference
이 문제에 관하여(React-Bootstrap 통합), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/bello/react-libraries-integration-3nn9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)