mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
15 lines
377 B
TypeScript
15 lines
377 B
TypeScript
import React from 'react';
|
|
|
|
export default function InpaintingWIP() {
|
|
return (
|
|
<div className="work-in-progress inpainting-work-in-progress">
|
|
<h1>Inpainting</h1>
|
|
<p>
|
|
Inpainting is available as a part of the Invoke AI Command Line
|
|
Interface. A dedicated WebUI interface will be released in the near
|
|
future.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|