DefinitelyTyped/types/react-native-snackbar-component/react-native-snackbar-component-tests.tsx
2019-02-22 20:38:34 +00:00

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>
);
}
}