Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 1.08 KB

README.md

File metadata and controls

28 lines (18 loc) · 1.08 KB

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;