6 lines
171 B
TypeScript
6 lines
171 B
TypeScript
import * as React from 'react';
|
|
export interface PlaceholderProps {
|
|
show?: boolean;
|
|
}
|
|
export default function Placeholder(props: PlaceholderProps): React.JSX.Element;
|