You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
616 B
44 lines
616 B
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`component.UI.Panel should render correctly 1`] = `
|
|
.c1 {
|
|
-webkit-flex: 1;
|
|
-ms-flex: 1;
|
|
flex: 1;
|
|
}
|
|
|
|
.c2 {
|
|
padding-top: auto;
|
|
}
|
|
|
|
.c0 {
|
|
height: 100%;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-direction: column;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
|
|
<article
|
|
className="c0"
|
|
>
|
|
<header
|
|
className=""
|
|
>
|
|
Header here
|
|
</header>
|
|
<section
|
|
className="c1"
|
|
>
|
|
Body here
|
|
</section>
|
|
<footer
|
|
className="c2"
|
|
>
|
|
Footer here
|
|
</footer>
|
|
</article>
|
|
`;
|
|
|