This commit is contained in:
Riccardo
2021-08-16 22:13:26 +02:00
parent c503984d92
commit 7939d15537
19 changed files with 1646 additions and 1755 deletions

View File

@@ -11,7 +11,6 @@ export const FEED_QUERY = gql`
$orderBy: LinkOrderByInput
) {
feed(take: $take, skip: $skip, orderBy: $orderBy) {
id
links {
id
createdAt
@@ -171,28 +170,4 @@ const LinkList = () => {
);
};
// const LinkList = () => {
// const linksToRender = [
// {
// id: '1',
// description:
// 'Link first😎',
// url: 'https://prisma.io'
// },
// {
// id: '2',
// description: 'Link zwei',
// url: 'https://www.apollographql.com/docs/react/'
// }
// ];
//
// return (
// <div>
// {linksToRender.map((link) => (
// <Link key={link.id} link={link} />
// ))}
// </div>
// );
// };
export default LinkList;