1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-17 19:19:23 +01:00
upscayl/renderer/components/RightPaneInfo.jsx

15 lines
300 B
React
Raw Normal View History

2022-08-31 20:55:26 +05:30
import React from "react";
2022-09-01 20:28:11 +05:30
function RightPaneInfo({ version }) {
2022-08-31 20:55:26 +05:30
return (
2022-09-01 20:28:11 +05:30
<>
<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>
</>
2022-08-31 20:55:26 +05:30
);
}
export default RightPaneInfo;