mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
13 lines
173 B
JavaScript
13 lines
173 B
JavaScript
function withAnimation(duration = 300) {
|
|
return;
|
|
}
|
|
|
|
function withSpringAnimation(duration = 300) {
|
|
return;
|
|
}
|
|
|
|
export default {
|
|
withAnimation,
|
|
withSpringAnimation
|
|
};
|