Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 |
import * as React from 'react'; |
|
2 | 4 |
import { createHostComponent } from '@remax/shared'; |
3 |
|
|
4 |
export interface MovableAreaProps { |
|
5 |
readonly dataset?: DOMStringMap; |
|
6 |
id?: string; |
|
7 |
className?: string; |
|
8 |
style?: React.CSSProperties; |
|
9 |
width?: number; |
|
10 |
height?: number; |
|
11 |
}
|
|
12 |
|
|
13 | 4 |
export const MovableArea: React.ComponentType<MovableAreaProps> = createHostComponent<MovableAreaProps>('movable-area'); |
Read our documentation on viewing source code .