mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
302 B
TypeScript
14 lines
302 B
TypeScript
import * as React from 'react';
|
|
import * as Highlight from 'react-highlighter';
|
|
|
|
export class ReactHolderTest extends React.Component {
|
|
render() {
|
|
return (
|
|
<div>
|
|
<Highlight
|
|
search="test">test</Highlight>
|
|
</div>
|
|
);
|
|
}
|
|
}
|