Co-authored-by: Nathan Sprenkle <nsprenkle@users.noreply.github.com> chore: marketing and upgrade url are full urls
22 lines
325 B
Plaintext
22 lines
325 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`ViewCourseButton snapshot default button 1`] = `
|
|
<Button
|
|
as="a"
|
|
disabled={false}
|
|
href="homeUrl"
|
|
>
|
|
View Course
|
|
</Button>
|
|
`;
|
|
|
|
exports[`ViewCourseButton snapshot disabled button 1`] = `
|
|
<Button
|
|
as="a"
|
|
disabled={true}
|
|
href="homeUrl"
|
|
>
|
|
View Course
|
|
</Button>
|
|
`;
|