354337a18b
* [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
20 lines
568 B
Plaintext
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>
|
|
`;
|