移除gitignore中的lib文件夹,上传被排除掉的前端lib文件

This commit is contained in:
墨梓柒
2026-01-21 15:41:43 +08:00
parent 761e4c8940
commit 433a4551f9
26 changed files with 4559 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
import { createContext } from 'react'
export type AnimationSettings = {
enableAnimations: boolean
enableWavesBackground: boolean
setEnableAnimations: (enable: boolean) => void
setEnableWavesBackground: (enable: boolean) => void
}
export const AnimationContext = createContext<AnimationSettings | undefined>(undefined)