1
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?

【初心者】Reactのコンポーネントとは

Last updated at Posted at 2024-03-01

コンポーネントとは

アプリのための再利用可能な UI 要素。

React では、マークアップと CSS と JavaScript を、独自の “コンポーネント” と呼ばれる、再利用可能な UI 要素にまとめることができる。

<article>
  <h1>My First Component</h1>
  <ol>
    <li>Components: UI Building Blocks</li>
    <li>Defining a Component</li>
    <li>Using a Component</li>
  </ol>
</article>

上記にある目次のためのコードを、TableOfContents と呼ばれるコンポーネントにすることができるのだ。

<PageLayout>
  <NavigationHeader>
    <SearchBar />
    <Link to="/docs">Docs</Link>
  </NavigationHeader>
  <Sidebar />
  <PageContent>
    <TableOfContents> <!-TableOfContentsコンポーネントを実装した–>
    <DocumentationText />
  </PageContent>
</PageLayout>

既に書いたコンポーネントを再利用することで構築できるようになり、開発速度がアップする。

参考

1
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
1
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?