qest-cz / react-maker

VSCode extension for creating functional components.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React maker

Version Install Downloads Ratings

This extension creates a function component in a named folder with index.tsx

Usages

Usage

You can create a component either by typing Create component in the vscode command palette or by right-clicking any folder in the tree view.

import React from 'react';
        
interface Props {
}
        
const ShowCase = (props: Props) => {
    return null;
};
        
export default ShowCase;

About

VSCode extension for creating functional components.


Languages

Language:TypeScript 100.0%