Commit bd391d7e authored by jim's avatar jim

Format the code

parent fd9773f5
import * as React from "react"; import * as React from 'react';
export interface EllipsisProps { export interface EllipsisProps {
tooltip?: boolean; tooltip?: boolean;
length?: number; length?: number;
lines?: number; lines?: number;
style?: React.CSSProperties; style?: React.CSSProperties;
className?:string; className?: string;
} }
export default class Ellipsis extends React.Component< export default class Ellipsis extends React.Component<EllipsisProps, any> {}
EllipsisProps,
any
> {}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment