diff options
Diffstat (limited to 'packages/website/ts/pages/jobs/floating_image.tsx')
-rw-r--r-- | packages/website/ts/pages/jobs/floating_image.tsx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/packages/website/ts/pages/jobs/floating_image.tsx b/packages/website/ts/pages/jobs/floating_image.tsx deleted file mode 100644 index 4719a9596..000000000 --- a/packages/website/ts/pages/jobs/floating_image.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import * as React from 'react'; - -export interface FloatingImageProps { - src: string; -} -export const FloatingImage = (props: FloatingImageProps) => { - return <img src={props.src} style={{ width: '100%' }} />; -}; |