Posts by Matheus Antunes • 11 points
2 posts
-
0
votes0
answers27
viewsQ: How to insert data into a specialized table?
I have two tables, according to the following logical design: Person(CPF, RG, Name, Address, City, State, Birth date) Client(CPF, Telephone) CPF references Person There are other specializations of…
-
0
votes1
answer76
viewsQ: Can I add functions within the render method?
It is bad practice to call functions and/or add structures (conditional, interaction) within the component render method before Return, for example: export default class Header extends Component {…