jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
13 lines (12 loc) • 303 B
TypeScript
/**
* @file index.tsx
*
* @fileoverview Joins a list of strings together.
*/
import { FunctionComponent } from 'react';
interface StringJoinerProps {
items: string[];
separator?: string;
}
export declare const StringJoiner: FunctionComponent<StringJoinerProps>;
export default StringJoiner;