react tabler components
1.0.0
Tabler용 React 구성 요소의 WIP 컬렉션
https://jonthump.github.io/react-tabler-comComponents/
npm install --save react-tabler-components
or
yarn add react-tabler-components
현재 이것은 구성 요소 집합일 뿐이며 Tabler CSS 또는 Javascript가 함께 패키지로 제공되지 않으므로 가장 적합한 방식으로 프로젝트에 추가해야 합니다. 이 예에서는 Tabler 파일의 로컬 복사본과 글꼴용 Bootstrap/Google CDN을 사용하고 있습니다. %PUBLIC_URL%는 빌드 시 create-react-app으로 대체됩니다.
< link rel =" stylesheet " href =" https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css " >
< link rel =" stylesheet " href =" https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,500,500i,600,600i,700,700i&subset=latin-ext " >
< script src =" %PUBLIC_URL%/assets/js/require.min.js " > </ script >
< script >
requirejs . config ( {
baseUrl : '.'
} ) ;
</ script >
<!-- Dashboard Core -->
< link href =" %PUBLIC_URL%/assets/css/dashboard.css " rel =" stylesheet " />
< script src =" %PUBLIC_URL%/assets/js/dashboard.js " > </ script >
<!-- c3.js Charts Plugin -->
< link href =" %PUBLIC_URL%/assets/plugins/charts-c3/plugin.css " rel =" stylesheet " />
< script src =" %PUBLIC_URL%/assets/plugins/charts-c3/plugin.js " > </ script >
<!-- Google Maps Plugin -->
< link href =" %PUBLIC_URL%/assets/plugins/maps-google/plugin.css " rel =" stylesheet " />
< script src =" %PUBLIC_URL%/assets/plugins/maps-google/plugin.js " > </ script >
<!-- Input Mask Plugin -->
< script src =" %PUBLIC_URL%/assets/plugins/input-mask/plugin.js " > </ script >
그런 다음 React-Tabler-Components를 가져와서 빌드하면 됩니다...
import React , { Component } from "react" ;
import { Card , Text , Icon } from "react-tabler-components" ;
class MyCard extends Component {
render ( ) {
return (
< Card >
< Card . Header >
< Card . Title > Card Title </ Card . Title >
</ Card . Header >
< Card . Body >
< Text color = "red" >
Some Red text next to an icon
< Icon name = "user" />
</ Text >
</ Card . Body >
</ Card >
) ;
}
}
MIT © 존톰프