DefinitelyTyped/types/react-highlight/react-highlight-tests.tsx
Josh Goldberg d702bb1a51 Added react-highlight types (#27615)
* Added react-highlight types

* React TS version 2.6

* No "I" interface prefix

* Whoops, P template also
2018-07-26 11:59:05 -07:00

10 lines
227 B
TypeScript

import * as React from "react";
import Highlight from "react-highlight";
export const _ = () => <>
<Highlight className="javascript" />
<Highlight className="typescript">
`console.log("Hello, world!");`
</Highlight>
</>;