2024-01-26 17:20:53 +00:00
|
|
|
import './App.css'
|
2024-03-03 12:50:48 +00:00
|
|
|
import ImageModerator, { ImageModeratorProps } from './components/ImageModerator/ImageModerator'
|
|
|
|
|
|
|
|
const imageModeratorProps: ImageModeratorProps = {
|
|
|
|
acceptLabel: "Accept",
|
|
|
|
discardLabel: "Discard"
|
|
|
|
}
|
2024-01-26 17:20:53 +00:00
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
|
|
|
<>
|
2024-03-03 12:50:48 +00:00
|
|
|
<ImageModerator {...imageModeratorProps} />
|
2024-01-26 17:20:53 +00:00
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-03-03 11:08:12 +00:00
|
|
|
export default App
|