init globals css file

This commit is contained in:
maxim 2025-02-21 17:38:30 +03:00
parent eecebbccac
commit 4ccb6d4f3d
2 changed files with 4 additions and 0 deletions

3
src/globals.css Normal file
View File

@ -0,0 +1,3 @@
.refine-list-button {
display: none !important;
}

View File

@ -2,6 +2,7 @@ import React from 'react'
import {createRoot} from 'react-dom/client'
import App from './App'
import './globals.css'
const container = document.getElementById('root') as HTMLElement
const root = createRoot(container)