react2angular
react2angular copied to clipboard
Doesnt work correct in table
When i try to use one of the components inside of a table element it always renders the component just above the table when it renders. Not where I put the element. It does not matter the component content. For example...
table <react_component></react_component> table
Turns into <react_component></react_component> table table`
This is not react2angular. This is the browser moving a none table element outside of the table.
You should only be rendering table elements within a table.
A work around is to use div's with a display value of table, table-row and table-cell etc.
https://www.dummies.com/web-design-development/css3/using-the-div-tag-to-create-tables/