Skip to content

Commit

Permalink
Rename file
Browse files Browse the repository at this point in the history
  • Loading branch information
benchristel committed Mar 7, 2024
1 parent 9f88723 commit cd8b246
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ export type { MovablePointProps } from "./interaction/MovablePoint"
export { MovablePointDisplay } from "./display/MovablePointDisplay"
export type { MovablePointDisplayProps } from "./display/MovablePointDisplay"

export { useMovable } from "./interaction/useMovementInteraction"
export type { UseMovable, UseMovableArguments } from "./interaction/useMovementInteraction"
export { useMovable } from "./interaction/useMovable"
export type { UseMovable, UseMovableArguments } from "./interaction/useMovable"

export { useMovablePoint } from "./interaction/useMovablePoint"
export type {
Expand Down
2 changes: 1 addition & 1 deletion src/interaction/MovablePoint.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from "react"
import { Theme } from "../display/Theme"
import { vec } from "../vec"
import { useMovable } from "./useMovementInteraction"
import { useMovable } from "./useMovable"
import { MovablePointDisplay } from "../display/MovablePointDisplay"

export type ConstraintFunction = (position: vec.Vector2) => vec.Vector2
Expand Down
File renamed without changes.

0 comments on commit cd8b246

Please sign in to comment.