- 22-page high-fidelity design gallery - shadcn/ui + Tailwind CSS + Vite - iPhone frame wrapper for realistic preview - Bottom tab bar component - All pages match ZhiXi app screens
17 lines
588 B
TypeScript
17 lines
588 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="react" />
|
|
|
|
declare namespace React {}
|
|
declare namespace JSX {
|
|
type Element = React.JSX.Element
|
|
type ElementType = React.JSX.ElementType
|
|
type IntrinsicElements = React.JSX.IntrinsicElements
|
|
interface IntrinsicAttributes extends React.JSX.IntrinsicAttributes {}
|
|
interface ElementChildrenAttribute extends React.JSX.ElementChildrenAttribute {}
|
|
type LibraryManagedAttributes<C, P> = React.JSX.LibraryManagedAttributes<C, P>
|
|
}
|
|
|
|
declare module "lucide-react" {
|
|
export * from "lucide-react/dist/lucide-react.suffixed";
|
|
}
|