mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-07-05 17:31:22 +02:00
9 lines
227 B
TypeScript
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
|
|
);
|
|
}; |