react-mobile-app-button
Version:
Discover our versatile React component designed to effortlessly integrate download buttons for iOS App Store, Google Play Store, and Huawei AppGallery. With our component, you can easily enhance user experience by providing seamless access to your mobile
16 lines • 465 B
JavaScript
import React from "react";
import { ButtonsContainer, GooglePlayButton, AppStoreButton } from "../index";
const ButtonsContainerExample = ({
gap,
direction = "row"
}) => {
return /*#__PURE__*/React.createElement(ButtonsContainer, {
gap: gap,
direction: direction
}, /*#__PURE__*/React.createElement(GooglePlayButton, {
url: ""
}), /*#__PURE__*/React.createElement(AppStoreButton, {
url: ""
}));
};
export default ButtonsContainerExample;