Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
METHOD FIL HIGH Q REACT TYPESCRIPT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BELICAUD Louan
METHOD FIL HIGH Q REACT TYPESCRIPT
Merge requests
!7
Consigne view
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Consigne view
ConsigneView
into
master
Overview
0
Commits
7
Pipelines
5
Changes
11
Merged
BARBEDETTE Corentin
requested to merge
ConsigneView
into
master
2 years ago
Overview
0
Commits
7
Pipelines
5
Changes
11
Expand
0
0
Merge request reports
Compare
master
version 4
ff23e5ff
2 years ago
version 3
69fa420f
2 years ago
version 2
69fa420f
2 years ago
version 1
7452baa6
2 years ago
master (base)
and
latest version
latest version
8474fbbb
7 commits,
2 years ago
version 4
ff23e5ff
6 commits,
2 years ago
version 3
69fa420f
5 commits,
2 years ago
version 2
69fa420f
5 commits,
2 years ago
version 1
7452baa6
9 commits,
2 years ago
11 files
+
465
−
37
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
src/component/Consigne/Consigne.tsx
0 → 100644
+
25
−
0
Options
import
React
from
'
react
'
;
import
'
../../style/component/ButtonComponent.scss
'
;
import
'
../../style/component/Consigne/Consigne.scss
'
;
import
{
Form
}
from
'
react-bootstrap
'
;
type
Props
=
{
name
:
string
;
placeholder
:
string
;
};
Consigne
.
defaultProps
=
{
name
:
'
Default
'
,
placehodler
:
'
Placeholder
'
};
function
Consigne
(
props
:
Props
)
{
return
(
<
div
className
=
"mainDivConsigne"
>
<
p
className
=
"textForm"
>
{
props
.
name
}
</
p
>
<
Form
.
Control
placeholder
=
{
props
.
placeholder
}
></
Form
.
Control
>
</
div
>
);
}
export
default
Consigne
;
Loading