* wip: First round on sidebar resizing * feat: Saving setting, animation * all requirements, refactoring needed * lint * refactor useResize * some mobile improvements * fix * refactor
9 lines
144 B
JavaScript
9 lines
144 B
JavaScript
// @flow
|
|
import * as React from "react";
|
|
|
|
export const id = "skip-nav";
|
|
|
|
export default function SkipNavContent() {
|
|
return <div id={id} />;
|
|
}
|