Files
vscode-front-matter/docs/components/Page/Testimonial.tsx
T
2021-09-02 10:26:04 +02:00

9 lines
227 B
TypeScript

import * as React from 'react';
export interface ITestimonialProps {}
export const Testimonial: React.FunctionComponent<ITestimonialProps> = (props: React.PropsWithChildren<ITestimonialProps>) => {
return (
null
);
};