apple2js/js/components/Inset.tsx
Will Scullin 4a188a9a5c
Preact UI (#106)
First pass at a Preact UI, still short some major features but full proof of concept.
2022-05-10 06:52:06 -07:00

13 lines
264 B
TypeScript

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