gatsby-theme-fast-ai-sidebar
Version:
Rebass-based gatsby theme used in Zoe.ai projects.
15 lines (11 loc) • 354 B
JavaScript
import PropTypes from 'prop-types';
export const NavigationRoute = PropTypes.shape({
to: PropTypes.string.isRequired,
label: PropTypes.node,
children: PropTypes.array,
});
export const NavigationRoutes = PropTypes.arrayOf(NavigationRoute);
export const Ref = PropTypes.oneOfType([
PropTypes.func,
PropTypes.exact({ current: PropTypes.any }),
]);