You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import { type FC } from 'react';
- import { type LinkComp } from '../shared';
- export type Feature = {
- img: string;
- url: string;
- title: string;
- description: string;
- lottieJsonData?: any;
- };
- export type FeatureListProps = {
- features: Feature[];
- LinkComp?: LinkComp;
- };
- export type WhyRspackProps = FeatureListProps;
- export declare const WhyRspack: FC<WhyRspackProps>;
|