Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sample_Argon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Geetanjali B
sample_Argon
Merge requests
!11
adding searchbar component
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
adding searchbar component
akash.p/sample_argon:features/akash/searchbar
into
minion
Overview
1
Commits
1
Pipelines
0
Changes
4
1 open thread
Hide all comments
Merged
adding searchbar component
Akash P
requested to merge
akash.p/sample_argon:features/akash/searchbar
into
minion
Jan 13, 2022
Overview
1
Commits
1
Pipelines
0
Changes
4
1 open thread
Hide all comments
0
0
Merge request reports
Compare
minion
minion (base)
and
latest version
latest version
2a64d4a9
1 commit,
Jan 13, 2022
4 files
+
154
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
src/components/SearchBar/SearchBar.js
0 → 100644
+
15
−
0
View file @ 2a64d4a9
Edit in single-file editor
Open in Web IDE
import
React
from
"
react
"
;
import
{
FaSearch
}
from
"
react-icons/fa
"
;
import
styles
from
"
./SearchBar.module.scss
"
;
function
SearchBar
(
props
)
{
return
(
<
div
className
=
{
styles
.
searchBar
}
>
<
FaSearch
className
=
{
styles
.
icon
}
/
>
<
input
className
=
{
styles
.
searchInput
}
placeholder
=
{
props
.
searchInput
}
type
=
"
text
"
/>
<
/div
>
);
}
export
default
SearchBar
;
Loading