/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ import {Button, ButtonGroup, Glyph, colors} from 'flipper'; import React from 'react'; export default function ButtonNavigation(props: { /** Back button is enabled */ canGoBack: boolean; /** Forwards button is enabled */ canGoForward: boolean; /** Callback when back button is clicked */ onBack: () => void; /** Callback when forwards button is clicked */ onForward: () => void; }) { return ( ); }