mirror of
https://github.com/kevin-DL/sapper-template.git
synced 2026-01-19 04:55:18 +00:00
12 lines
177 B
JavaScript
12 lines
177 B
JavaScript
import move from './_move.js';
|
|
|
|
const { send, receive } = move({
|
|
fallback(node) {
|
|
return {
|
|
duration: 0,
|
|
css: t => `opacity: ${t}`
|
|
};
|
|
}
|
|
});
|
|
|
|
export { send, receive }; |