Picked state diagram as a sample for sankey

This commit is contained in:
Nikolay Rozhkov
2023-06-18 01:32:45 +03:00
parent c2417de5f1
commit 6b40b394c8
10 changed files with 1829 additions and 34 deletions

View File

@@ -0,0 +1,13 @@
/**
* Mocked Sankey diagram renderer
*/
import { vi } from 'vitest';
export const draw = vi.fn().mockImplementation(() => {
return '';
});
export default {
draw,
};