This repository has been archived by the owner on May 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f337b4
commit eee0ef7
Showing
5 changed files
with
43 additions
and
9 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
...src/components/ProjectsComponents/CreateProjectComponents/InputFields/InfoUrl/InfoUrl.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { Input } from "../../styles"; | ||
|
||
export default function InfoUrl({ | ||
infoUrl, | ||
setInfoUrl, | ||
}: { | ||
infoUrl: string; | ||
setInfoUrl: (infoUrl: string) => void; | ||
}) { | ||
return ( | ||
<Input | ||
value={infoUrl} | ||
onChange={e => setInfoUrl(e.target.value)} | ||
placeholder="Ex. https://osoc.be/" | ||
/> | ||
); | ||
} |
1 change: 1 addition & 0 deletions
1
...nd/src/components/ProjectsComponents/CreateProjectComponents/InputFields/InfoUrl/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from "./InfoUrl"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters