diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-02 13:16:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 13:16:53 +0100 |
commit | 4a97a04932fd634bb31d35477b01f7596a458d2e (patch) | |
tree | 095d53b5b5d455ecb339e63475b904b6020f76d3 /tests | |
parent | 65edd8389f1b175eead2287ddfe62c19108ec967 (diff) | |
parent | 34e044ef96efc8f4e6463bdc767c526f590e505c (diff) | |
download | puszcza-4a97a04932fd634bb31d35477b01f7596a458d2e.tar.gz puszcza-4a97a04932fd634bb31d35477b01f7596a458d2e.zip |
Merge pull request #20 from 19pdh/feature/drive-link
WIP Feature/drive link
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/__snapshots__/storybook.test.js.snap | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/unit/__snapshots__/storybook.test.js.snap b/tests/unit/__snapshots__/storybook.test.js.snap index 9310514..33be1ab 100644 --- a/tests/unit/__snapshots__/storybook.test.js.snap +++ b/tests/unit/__snapshots__/storybook.test.js.snap @@ -66,6 +66,43 @@ exports[`Storyshots Facebook/FacebookFindUsButton default 1`] = ` </div> `; +exports[`Storyshots GoogleDriveLink default 1`] = ` +<div + style="height: 100vh; display: flex; align-items: center; justify-content: center;" +> + <div + class="google-drive-link" + > + <div + class="image" + > + <img + alt="Drive" + src="/assets/google-drive.png" + /> + </div> + + <div + class="text" + > + <p> + Test + </p> + </div> + + <a + href="https://drive.google.com/u/1" + > + <button + class="button" + > + Przejdź + </button> + </a> + </div> +</div> +`; + exports[`Storyshots JoinUs default 1`] = ` <div style="height: 100vh; display: flex; align-items: center; justify-content: center;" |