celeroncoder / celeroncoder/newzy
React Review Audit
- Dominant language
- TypeScript
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
**Score: 99/100** · 0 errors · 1 warning
Copy as prompt
```text
Fix the following React Review diagnostics in my codebase.
## Warnings (1)
1. [warning] no-react-dom-deprecated-apis — src/index.tsx:8
ReactDOM.render is the legacy root API — switch to `import { createRoot } from 'react-dom/client'` and call `createRoot(container).render(...)` (REMOVED in React 19)
```
---
### ⚠️ Warnings (1)
**`no-react-dom-deprecated-apis`**
ReactDOM.render is the legacy root API — switch to `import { createRoot } from 'react-dom/client'` and call `createRoot(container).render(...)` (REMOVED in React 19)
> Switch the legacy `react-dom` root API (`render` / `hydrate` / `unmountComponentAtNode`) to `createRoot` / `hydrateRoot` / `root.unmount()` from `react-dom/client`. Replace `findDOMNode` with a ref. The whole `react-dom/test-utils` entry point is removed in React 19 — use `act` from `react` and `fireEvent` / `render` from `@testing-library/react`. Only enabled on projects detected as React 18+.
[`src/index.tsx:8`](https://github.com/celeroncoder/newzy/blob/d7da8c0328f67f376f818508a63658feb342f3be/src/index.tsx#L8)
---
Last scored May 14, 2026 at 9:39 AM UTC. Maintained by [React Review](https://github.com/millionco/react-review).
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.