Skip to content

Commit

Permalink
naming
Browse files Browse the repository at this point in the history
  • Loading branch information
saucepoint committed Nov 14, 2023
1 parent 04a1d92 commit 77f5e0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/SideNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const SideNav: React.FC<Props> = ({ onClick }) => {

return (
<>
<h3 className={styles.category}>Basic</h3>
<h3 className={styles.category}>Lifecycle</h3>
{ROUTES_BY_CATEGORY.map(({ routes, title }, i) => (
<div key={i}>
{title && <h3 className={styles.title}>{title}</h3>}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import styles from "./index.module.css"
import youTube from "../components/youtube.png"
import { ROUTES, ROUTES_BY_CATEGORY, TRANSLATIONS } from "../nav"

const UPDATES = ["2023/10/18 - Initial V4 Snippets"]
const UPDATES = ["2023/11/13 - Make snippets concise", "2023/10/18 - Initial V4 Snippets"]

export default function HomePage() {
const [query, setQuery] = useState("")
Expand Down

0 comments on commit 77f5e0c

Please sign in to comment.