Will Hunt e87030487e
Move components from root to elements (#332)
* Move components from root to elements

* Revert change

* Fix import

* changelog
2022-05-06 10:25:10 +01:00

8 lines
233 B
TypeScript

import { FunctionComponent, h } from "preact";
import style from "./ButtonSet.module.scss";
export const ButtonSet: FunctionComponent = (props) => {
return <div className={style.buttonSet}>
{props.children}
</div>;
}