How do I declare a model class in React.js? I know how to do it in Angular with Typescript, but in this new project I need to use React. I'm pretty new to React.
I basically want to do following Typescript Code but in React/Javascript:
export class Model {
id!: int
name!: string
}
question from:https://stackoverflow.com/questions/65598282/how-do-i-declare-a-model-class-in-react-js