c5866db137
* feat(nc-android): fit the design to mobile * refactor(nc-android): resync with nc desktop * fix(nc-android): tauri version * refactor(nc-android): resync with nc desktop (rust) * chore(nc-android): format code * chore(nc-android): bump version
6 lines
188 B
TypeScript
6 lines
188 B
TypeScript
import React from 'react';
|
|
|
|
export const HelpImage = ({ img, imageDescription }: { img: string; imageDescription: string }) => (
|
|
<img src={img} alt={imageDescription} width="100%" />
|
|
);
|