mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-12 01:40:53 +01:00
15 lines
300 B
JavaScript
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;
|