"use strict"
;
const React = require(
'react'
);
const ApImage = require(
'../../lib/ap_image'
);
let Demo = React.createClass({
render:
function
() {
let width = 280,
height = 280;
return
(
<
div
>
<
ApImage
src
=
"./images/01.jpg"
width={width}
height={height}
scale
=
"fit"
/>
<
ApImage
src
=
"./images/01.jpg"
width={width}
height={height}
scale
=
"fill"
/>
<
ApImage
src
=
"./images/01.jpg"
width={width}
height={height}
scale
=
"none"
/>
<
ApImage
src
=
"./images/__not_found__"
width={width}
height={height}
scale
=
"none"
/>
</
div
>
);
}
});
module.exports = Demo;