Looks like functions which are part of the React framework are referred to as "methods":
"The only method you must define in a React.Component subclass is called render()."
https://reactjs.org/docs/react-component.html
However, this excerpt is from further down in the same webpage:
"The render() function should be pure, meaning that it does not modify component state"
So even in the same webpage on the official React website, render() seems to be referred to as either a function or a method. Do you use any guidelines for using the term "function" vs "method" when discussing these constructs in React? Or in the React world are these two terms completely interchangeable with no real discernment or nuance?