🏷️ Search for custom tailnet name offers with keywords.
1import { StrictMode } from 'react';
2import { createRoot } from 'react-dom/client';
3import App from './App';
4import './index.css';
5
6// biome-ignore lint/style/noNonNullAssertion: Known non-null.
7createRoot(document.getElementById('root')!).render(
8 <StrictMode>
9 <App />
10 </StrictMode>,
11);