apple2js/js/components/Inset.tsx
Will Scullin e525e12c3c
React linters (#117)
* React hook linter

* React linting

* Simplify config
2022-05-29 13:48:51 -07:00

13 lines
274 B
TypeScript

import { h, ComponentChildren } from 'preact';
/**
* Convenience component for a nice beveled border.
*
* @returns Inset component
*/
export const Inset = ({ children }: { children: ComponentChildren }) => (
<div className="inset">
{children}
</div>
);