basic page transitions between /blog and /blog/[slug]

This commit is contained in:
Rich Harris
2018-07-01 10:59:41 -04:00
parent 1dcad25401
commit fd73119bda
7 changed files with 231 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
import move from './_move.js';
const { send, receive } = move({
fallback(node) {
return {
duration: 0,
css: t => `opacity: ${t}`
};
}
});
export { send, receive };