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 SwiperItemProps { |
|
5 |
readonly dataset?: DOMStringMap; |
|
6 |
key: string; |
|
7 |
}
|
|
8 |
|
|
9 | 4 |
export const SwiperItem: React.ComponentType<SwiperItemProps> = createHostComponent<SwiperItemProps>('swiper-item'); |
Read our documentation on viewing source code .