mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
e525e12c3c
* React hook linter * React linting * Simplify config
13 lines
274 B
TypeScript
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>
|
|
);
|