1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-12 01:40:53 +01:00
upscayl/renderer/components/RightPaneInfo.jsx
Nayam Amarshe e88100e802 Fixed UI
2022-09-01 20:28:11 +05:30

15 lines
300 B
JavaScript

import React from "react";
function RightPaneInfo({ version }) {
return (
<>
<p className="p-5 text-lg font-medium text-neutral-400">
Select an Image to Upscale
</p>
<p className="text-neutral-600">Upscayl v{version}</p>
</>
);
}
export default RightPaneInfo;