mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
19 lines
490 B
TypeScript
19 lines
490 B
TypeScript
import * as React from "react";
|
|
import { View } from "react-native";
|
|
import SnackbarComponent from "react-native-snackbar-component";
|
|
|
|
class SnackbarComponentTest extends React.Component {
|
|
render() {
|
|
return (
|
|
<View>
|
|
<SnackbarComponent
|
|
autoHidingTime={2000}
|
|
actionText={"OPEN"}
|
|
textMessage="Hello"
|
|
visible={true}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
}
|