Skip to content

Commit

Permalink
tweak: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahpurcell committed Oct 10, 2024
1 parent 6bb2d1c commit 6d602a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion assets/src/components/drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ interface DrawerWithStateProps {
onToggleOpen: Props["onToggleOpen"]
}

export const DrawerWithState = (props: PropsWithChildren<DrawerWithStateProps>) => {
export const DrawerWithState = (
props: PropsWithChildren<DrawerWithStateProps>
) => {
const [drawerOpen, setDrawerOpen] = useState(props.startOpen)

return (
Expand Down

0 comments on commit 6d602a3

Please sign in to comment.