Our organization has an app that we're porting from .NET/WPF to React. We have several grids, that utilize this:
```
using System;
using System.Collections.Generic;
using System.Data;
using System.Drawing;
using System.Windows.Forms;
using Telerik.WinControls;
using System.Configuration;
using System.Data.SqlClient;
using Telerik.WinControls.UI;
using Telerik.WinControls.Data;
using System.Data.OleDb;
using System.Linq;
using System.Threading.Tasks;
using System.Web.UI.WebControls;
using System.ComponentModel;
```
Instead, I'd like to use KendoReact.
Before I rewrite the entire thing in NextJS/KendoReact, are there some tools and techniques that I could use to save time?