blob: 4719a9596ddc42719d4ab72fd68b68042d2939ba (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import * as React from 'react';
export interface FloatingImageProps {
src: string;
}
export const FloatingImage = (props: FloatingImageProps) => {
return <img src={props.src} style={{ width: '100%' }} />;
};
|