mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
Add definitions for reactcss (#12122)
* Add definitions for react-css-transition-replace * Add definitions for reactcss * Change test header * Remove accidentally added other definitions * Remove yarn.lock from .gitignore
This commit is contained in:
committed by
Masahiro Wakame
parent
47221120df
commit
b6bd0766d8
29
reactcss/reactcss-tests.tsx
Normal file
29
reactcss/reactcss-tests.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
// ReactCSS Test
|
||||
// ================================================================================
|
||||
///<reference path="reactcss.d.ts"/>
|
||||
///<reference path="../react/react.d.ts"/>
|
||||
///<reference path="../react/react-dom.d.ts"/>
|
||||
|
||||
// Imports
|
||||
// --------------------------------------------------------------------------------
|
||||
import * as React from "react"
|
||||
import { StatelessComponent } from "react"
|
||||
import { render } from "react-dom"
|
||||
import { default as reactCSS, hover, loop } from "reactcss"
|
||||
|
||||
interface TestProps extends ReactCSS.HoverProps {}
|
||||
|
||||
var styles: any = reactCSS({
|
||||
default : {},
|
||||
hover : {}
|
||||
}, { hover : true })
|
||||
|
||||
var loopProps: ReactCSS.LoopableProps = loop(1, 10)
|
||||
|
||||
var TestComponent: StatelessComponent<TestProps>
|
||||
var Test = hover(TestComponent)
|
||||
|
||||
render(
|
||||
<Test />,
|
||||
document.getElementById("main")
|
||||
)
|
||||
Reference in New Issue
Block a user