diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-03 19:14:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 19:14:44 +0100 |
commit | 6a87f4d381bb43bea3a2b64ea930d4f46783e22c (patch) | |
tree | 7e14c6c0ee06edcbc1dd3084d5801ab69be1ee28 /tests | |
parent | d81efb1e043180885bfb6ea9eac173a86fea6aad (diff) | |
parent | 1b74216fc4afa740991dcc9986eb6843c5b07a59 (diff) | |
download | puszcza-6a87f4d381bb43bea3a2b64ea930d4f46783e22c.tar.gz puszcza-6a87f4d381bb43bea3a2b64ea930d4f46783e22c.zip |
Merge pull request #22 from 19pdh/develop
Google 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;" |