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?

[VSCode][React] React関数コンポーネントの雛形を生成するスニペット

Posted at

概要

  • rafceコマンドでReact関数コンポーネントの雛形を生成する

手順

  1. VSCodeでES7 React/Redux/GraphQL/React-Native snippetsのExtensionをインストールする
    image.png

  2. 雛形を生成したいファイルでrafce+Tab

    rafce
    
  3. 雛形が生成される

    import React from 'react'
    
    const Circle.stories = () => {
      return (
        <div>
          
        </div>
      )
    }
    
    export default Circle.stories
    
    

参考リンク

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?