From 98a61ab4e2b10b5a7206f03f5c5075ece0d34a09 Mon Sep 17 00:00:00 2001 From: ofostier Date: Fri, 7 Jun 2024 13:59:59 +0200 Subject: [PATCH 1/3] Init field --- src/App.js | 12 +++++++ src/components/LinkField.js | 70 +++++++++++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 src/components/LinkField.js diff --git a/src/App.js b/src/App.js index 6eb712ab..d7c8b9b4 100644 --- a/src/App.js +++ b/src/App.js @@ -4,6 +4,7 @@ import { useTranslation } from 'react-i18next'; import logo from '../src/images/wifi.png'; import { Settings } from './components/Settings'; import { WifiCard } from './components/WifiCard'; +import { LinkField } from './components/LinkField'; import './style.css'; import { Translations } from './translations'; @@ -141,6 +142,7 @@ function App() { if (htmlDirection() === 'rtl') { html.style.direction = 'rtl'; } + console.log('change detected'); }); return ( @@ -190,6 +192,16 @@ function App() { onHideTipChange={onHideTipChange} /> + +