Skip to content

Instantly share code, notes, and snippets.

@ameetmadan
Last active April 2, 2023 08:52
Show Gist options
  • Save ameetmadan/b0cb2ff56e74c81cc2576e082216c2c7 to your computer and use it in GitHub Desktop.
Save ameetmadan/b0cb2ff56e74c81cc2576e082216c2c7 to your computer and use it in GitHub Desktop.
Create a new React.FC using Live templates for IntelliJ WebStorm
import React, { FC } from "react";
// $ComponentName$ is a variable which can be set to fileNameWithoutExtension()
type $ComponentName$Props = {
};
export const $ComponentName$: FC<$ComponentName$Props> = () => {
return (
<div>$ComponentName$</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment