diff --git a/src/App.tsx b/src/App.tsx index 0e15e03..8bc36e0 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,13 +1,17 @@ -import React from 'react'; +import React, { useState } from 'react'; import './App.css'; +import { ContextLang } from './components/ContextLang'; import { Footer } from './components/footer/footer'; import { MainPart } from './components/mainPart/mainPart'; function App() { + const [currentLang, setCurrentLang] = useState<'ru' | 'en'>('ru'); return (