Skip to content

Instantly share code, notes, and snippets.

@AllGistsEqual
Last active February 22, 2021 20:35
Show Gist options
  • Save AllGistsEqual/f24c93dba8c8f55395127b112de26d70 to your computer and use it in GitHub Desktop.
Save AllGistsEqual/f24c93dba8c8f55395127b112de26d70 to your computer and use it in GitHub Desktop.
// File: src/components/pages/articles.tsx
import React from 'react'
import { useArticlesData } from './articles.hooks'
const Articles = (): React.ReactElement => {
const data = useArticlesData()
return (
// nothing changed here so I skipped this part
)
}
export default Articles
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment