File size: 312 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
// @flow
import React from 'react';
import { SkipLink } from './style';
export const Skip = () => <SkipLink href="#main">Skip to content</SkipLink>;
export const getAccessibilityActiveState = (active: boolean) => {
return {
'data-active': active,
'aria-current': active ? 'page' : undefined,
};
};
|