forked from devsonket/devsonket.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
30 lines (25 loc) · 920 Bytes
/
Copy pathindex.js
File metadata and controls
30 lines (25 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import React, { useState } from "react"
import App from "../components/app"
import SEO from "../components/seo"
import Intro from "../components/intro"
import View from "../components/view"
import Library from "../components/library"
import "./index.css"
export default () => {
const [searchInput, setsearchInput] = useState("")
const handleInputChange = e => {
setsearchInput(e.target.value)
}
return (
<App>
<SEO
title="ডেভেলপার চিটশিট"
description="বাংলা চিটশিটের ভান্ডার। নিজের মাতৃভাষায় চিটশিটের ভান্ডার সমৃদ্ধ করতে আপনিও যোগ দিন"
lang="bn"
/>
<Intro input={searchInput} handleInputChange={handleInputChange} />
<View input={searchInput} />
<Library />
</App>
)
}