@uxui-guy/fpo-images
v1.1.1
Published
Just some images I can use to mock stuff up. For personal use only.
Downloads
1
Readme
For Position Only - Images
Some utility resouces for bringing temp images into my personal UX projects when in development. For fun and for free. :rocket:
Usage
import React, { useEffect } from 'react';
import { avatars } from "@uxui-guy/fpo-images"
function App() {
useEffect(() => {
console.log(avatars);
}, [])
return (
<Row>
{avatars.map((el, i) => (
<Image src={el} key={i} size={120} />
))}
</Row>
);
}Result(ish)

