react-rails의 Material-ui
3243 단어 react-railsmaterial-ui
설치
먼저 Yarn에서 다음을 설치하십시오.
$ yarn add @material-ui/core
$ yarn add @material-ui/icons #アイコン用
사용해보기
이제 material-ui를 사용할 수 있게 되었습니다.
다음으로, material-ui의 공식 사이트 (https://material-ui.com)으로 이동합니다.
사이드 메뉴의 구성 요소에서 원하는 구성 요소를 선택합니다.
이번에는 Inputs의 Button을 선택해 보겠습니다.
그러면 다음과 같이 몇 가지 Button과 소스 코드가 표시됩니다.
좋아하는 UI 소스 코드를 Rails의 React 컴포넌트에 붙여넣으면 머티리얼 컴포넌트를 쉽게 사용할 수 있습니다.
그러면 react-rails로 임의의 컴포넌트를 작성하고, 작성한 컴퍼넌트를 다음과 같이 변경해 주세요.
import React from "react"
import PropTypes from "prop-types"
import Button from '@material-ui/core/Button';
class MaterialComponentList extends React.Component {
render () {
return (
<React.Fragment>
<Button variant="contained" color="primary">
Primary
</Button>
</React.Fragment>
);
}
}
export default MaterialComponentList
이번에는 Button 구성 요소를 사용했으므로 Rails의 node_modules/@material-ui/core/Button을 가져옵니다.
이제 reactcomponent의 잘 나오는 화면에 액세스하면 material-ui의 Button이 표시되어 있을 것입니다.
Reference
이 문제에 관하여(react-rails의 Material-ui), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/anx/items/8bf9855a2118e96dfe5c
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
$ yarn add @material-ui/core
$ yarn add @material-ui/icons #アイコン用
이제 material-ui를 사용할 수 있게 되었습니다.
다음으로, material-ui의 공식 사이트 (https://material-ui.com)으로 이동합니다.
사이드 메뉴의 구성 요소에서 원하는 구성 요소를 선택합니다.
이번에는 Inputs의 Button을 선택해 보겠습니다.
그러면 다음과 같이 몇 가지 Button과 소스 코드가 표시됩니다.
좋아하는 UI 소스 코드를 Rails의 React 컴포넌트에 붙여넣으면 머티리얼 컴포넌트를 쉽게 사용할 수 있습니다.
그러면 react-rails로 임의의 컴포넌트를 작성하고, 작성한 컴퍼넌트를 다음과 같이 변경해 주세요.
import React from "react"
import PropTypes from "prop-types"
import Button from '@material-ui/core/Button';
class MaterialComponentList extends React.Component {
render () {
return (
<React.Fragment>
<Button variant="contained" color="primary">
Primary
</Button>
</React.Fragment>
);
}
}
export default MaterialComponentList
이번에는 Button 구성 요소를 사용했으므로 Rails의 node_modules/@material-ui/core/Button을 가져옵니다.
이제 reactcomponent의 잘 나오는 화면에 액세스하면 material-ui의 Button이 표시되어 있을 것입니다.
Reference
이 문제에 관하여(react-rails의 Material-ui), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/anx/items/8bf9855a2118e96dfe5c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)