Add a setting `useArrowFunctions` to determine whether or not to use arrow functions in the template. ```js function ComponentName(props) {...} ``` vs ```js const ComponentName = (props) => {...} ```