Skip to content

Instantly share code, notes, and snippets.

@JonathanTurnock
Created March 31, 2023 09:25
Show Gist options
  • Save JonathanTurnock/b7374aec90ab819757b786f0929d4831 to your computer and use it in GitHub Desktop.
Save JonathanTurnock/b7374aec90ab819757b786f0929d4831 to your computer and use it in GitHub Desktop.
React Function Component - Live template

React Functional Component Template

Add this to webstorm under Editor > Live Templates

Add a variable

TM_FILENAME_BASE -> capitalize(camelCase(fileNameWithoutExtension()))

import React from "react"
export type $TM_FILENAME_BASE$Props = {}
export const $TM_FILENAME_BASE$: React.FC<$TM_FILENAME_BASE$Props> = ({}) => {
return <></>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment