0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【React】コンポーネントの作り方

Posted at

React学習メモ_コンポーネントの作りかた。

コンポーネントとは、「部品」「パーツ」という意味。
Reactでは、見た目を機能ごとにコンポーネント化して、コンポーネントを組み合わせることでWebサイトの見た目を作る。

react.js
import React from 'react';
class Lesson extends React.Component{
  render(){
    return(
      <div className='lesson-card'>
          <div className='lesson-item'>
            <p></p>
            <img />
          </div>
      </div>
    );
  }
}
export default Lesson;

【手順】
①Reactをimportする。
②React.Componentを継承するクラスを定義する。
 (※このクラス名がコンポーネント目になる。)
③JSXを戻り値とするrenderメソッドを定義する。
④コンポーネントをエクスポートする。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?