2024-01-26 17:20:53 +00:00
|
|
|
import './App.css'
|
2024-02-22 17:26:37 +00:00
|
|
|
import ImageModerator from './components/ImageModerator/ImageModerator'
|
2024-01-26 17:20:53 +00:00
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
|
|
|
<>
|
2024-03-03 11:08:12 +00:00
|
|
|
<ImageModerator apiEndpoint='"https://gelbooru.com/index.php?page=dapi&s=post&q=index&limit=1&json=1"' imageUrlProperty='post[0]' />
|
2024-01-26 17:20:53 +00:00
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-03-03 11:08:12 +00:00
|
|
|
export default App
|