use const when declaring an arrow function in React class component
//Error:The 'const' modifier can only be used in TypeScript files.
If you're creating an instance method(method inside a class component), 
then no you don't need const. 
If you're creating a generic (i.e. utility) function OUTSIDE of a component, 
then yes you probably should use const.