aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/index.tsx
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-15 09:48:06 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-15 09:48:06 +0200
commit14d2364fc69e0222133115c55a36286986006098 (patch)
tree9e9b3c41ef742bbe87ca1632b292c67043051957 /uidev/src/index.tsx
parent5.6.3-nightly.34 [skip ci] (diff)
downloadferdium-app-14d2364fc69e0222133115c55a36286986006098.tar.gz
ferdium-app-14d2364fc69e0222133115c55a36286986006098.tar.zst
ferdium-app-14d2364fc69e0222133115c55a36286986006098.zip
chore: update eslint setup (#2074)
Diffstat (limited to 'uidev/src/index.tsx')
-rw-r--r--uidev/src/index.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/uidev/src/index.tsx b/uidev/src/index.tsx
index c996d9f69..0f2003d24 100644
--- a/uidev/src/index.tsx
+++ b/uidev/src/index.tsx
@@ -1,8 +1,6 @@
1import { render } from 'react-dom'; 1import { render } from 'react-dom';
2import { App } from './app'; 2import { App } from './app';
3 3
4const app = () => ( 4const app = () => <App />;
5 <App />
6);
7 5
8render(app(), document.querySelector('#root')); 6render(app(), document.querySelector('#root'));