fix: delete gradient wrapper

This commit is contained in:
RadoslavDimchev 2023-08-24 14:15:55 +03:00
parent 7cadce718e
commit 98be86fbb1
1 changed files with 0 additions and 12 deletions

View File

@ -1,12 +0,0 @@
import { ReactNode } from 'react'
import './layoutGradient.css'
type PageWrapperGradientProps = {
children: ReactNode
}
const PageWrapperGradient = ({ children }: PageWrapperGradientProps) => {
return <div className="layout gradient-wrapper">{children}</div>
}
export default PageWrapperGradient