This extension creates a function component in a named folder with index.tsx
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;