Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgperry committed Jul 16, 2024
1 parent 73e5771 commit 5728ef5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions dev/react/src/examples/_dragSetState.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useState } from "react";
import { useState } from "react"
import { motion } from "framer-motion"

const styleA = {
Expand All @@ -8,7 +8,6 @@ const styleA = {
borderRadius: "10px",
}

console.clear()
export const App = () => {
const [state, setState] = useState(0)

Expand Down
2 changes: 1 addition & 1 deletion dev/react/src/examples/layout-stress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export const App = () => {
const [expanded, setExpanded] = useState(false)

return (
<MotionConfig transition={{ duration: 10 }}>
<MotionConfig transition={{ duration: 10, ease: "linear" }}>
<Container
data-layout
className={expanded ? "expanded" : ""}
Expand Down

0 comments on commit 5728ef5

Please sign in to comment.