storj/web/satellite/tests/unit/__snapshots__/Button.spec.ts.snap
Nikolay Yurchenko 354337a18b
[WIP] Header satellite ui initial markup (#651)
* [V3-635] created Project Dropdown list

* Deleting redundant package-lock.json

* [V3-637] New Project button and popup markup

* component structure and placement changed

* [V3-636] created user profile settings markup

* navigation area created
2018-11-14 16:00:01 +02:00

20 lines
568 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Button.vue renders correctly 1`] = `
<div class="container" style="width: inherit; height: inherit;">
<h1 class="label">Default</h1>
</div>
`;
exports[`Button.vue renders correctly with isDisabled prop 1`] = `
<div class="container disabled" style="width: inherit; height: inherit;">
<h1 class="label">Default</h1>
</div>
`;
exports[`Button.vue renders correctly with isWhite prop 1`] = `
<div class="container white" style="width: inherit; height: inherit;">
<h1 class="label white">Default</h1>
</div>
`;