feat: update eslint import order rule (#31)

This commit is contained in:
RustamRu
2024-11-17 13:46:24 +03:00
parent d15d761f1a
commit 1787e94f8e
23 changed files with 402 additions and 22 deletions

View File

@@ -2,9 +2,10 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import { i18nextReactInitConfig } from '@brojs/cli';
import App from './app';
import i18next from 'i18next';
import App from './app';
i18next.t = i18next.t.bind(i18next);
const i18nextPromise = i18nextReactInitConfig(i18next);
export default () => <App />;