React Migration Cheatsheet
[[Trustroots Wiki]] is an independent wiki with information for people who are actively exchanging hospitality.
Jump to navigationJump to search
| Angular | React |
|---|---|
someString
|
import { useTranslation } from 'react-i18next';
|
<someElement class="...">
|
<someElement className="...">
|
<a ui-sref="alias">
|
<a href="path">
|
<!-- comment -->
|
{/* comment */}
|
<someElement ng-if="condition">
|
{condition && (<someElement>)}
|
| ng-repeat | |
| ng-include | |
<section tr-boards="'...'">
|
<Board names="...">
|