format code using prettier
This commit is contained in:
parent
f06a7a6da1
commit
93b4cd065a
27 changed files with 326 additions and 260 deletions
|
@ -1,5 +1,5 @@
|
|||
import { createEffect, type ParentComponent } from "solid-js";
|
||||
import styles from './BottomSheet.module.css'
|
||||
import styles from "./BottomSheet.module.css";
|
||||
|
||||
export type BottomSheetProps = {
|
||||
open?: boolean;
|
||||
|
@ -20,7 +20,11 @@ const BottomSheet: ParentComponent<BottomSheetProps> = (props) => {
|
|||
}
|
||||
});
|
||||
|
||||
return <dialog class={styles.bottomSheet} ref={element!}>{props.children}</dialog>;
|
||||
return (
|
||||
<dialog class={styles.bottomSheet} ref={element!}>
|
||||
{props.children}
|
||||
</dialog>
|
||||
);
|
||||
};
|
||||
|
||||
export default BottomSheet;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue