rsnext/test/integration/amp-export-validation/pages/cat.js
Sebastian Benz ae9b13e0be
Migrate to AMP Optimizer 2.0 (#10535)
* Migrate to AMP Optimizer 2.0

Most notable changes:

* Automatically import all missing AMP component scripts.
* Automatically add any missing mandatary AMP tags.
* 40% faster

I've updated the docs to mention component auto import and added a corresponding
test case.

* change validator tests which now pass validation

* Improve wording

Co-Authored-By: JJ Kasper <jj@jjsweb.site>

* Update adding-amp-components.md

Co-authored-by: JJ Kasper <jj@jjsweb.site>
Co-authored-by: Joe Haddad <timer150@gmail.com>
2020-02-14 16:01:43 -05:00

8 lines
210 B
JavaScript

export const config = { amp: true }
export default () => (
<div>
{/* I show a warning since the width and height attribute is missing */}
<amp-video src="/cats.mp4" layout="responsive" />
</div>
)