From 6ed312ea22c2566c7f2fb0d08d1fd0ba3c39b9b4 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Thu, 3 Nov 2022 23:36:35 +0100 Subject: [PATCH] include the primereact css-files --- src/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 032464f..e96bc09 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -4,6 +4,9 @@ import './index.css'; import App from './App'; import reportWebVitals from './reportWebVitals'; +import 'primereact/resources/themes/lara-light-blue/theme.css'; +import 'primereact/resources/primereact.min.css'; + const root = ReactDOM.createRoot( document.getElementById('root') as HTMLElement );