You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
scffld template for React Functional Component with SCSS
importReactfrom'react'import{Button}from'/* @scffld appRoot */components';/* @scffld-if includeStyle */import'.//* @scffld-pascal name */.scss'/* @scffld-endif */constbaseClass='/* @scffld-kebab name */'exporttype/* @scffld-pascal name */Props={title?: string}
export const/* @scffld-pascal name */: React.FC</* @scffld-pascal name */Props>=(props)=>{const{ title ='/* @scffld name */'}=propsreturn(<divclassName={baseClass}><Button>{title}</Button></div>)}