diff --git a/src/layouts/components/EventForm.js b/src/layouts/components/EventForm.js new file mode 100644 index 0000000..39ce18b --- /dev/null +++ b/src/layouts/components/EventForm.js @@ -0,0 +1,27 @@ +import React from 'react' + +const EventForm = () => { + return ( +
+
+ Title: + + Image: + + Date + + City + + Country: + + Description: + + +
+
+ ) +} + +export default EventForm diff --git a/src/layouts/components/ProjectForm.js b/src/layouts/components/ProjectForm.js new file mode 100644 index 0000000..4aa7740 --- /dev/null +++ b/src/layouts/components/ProjectForm.js @@ -0,0 +1,21 @@ +import React from 'react' + +const ProjectForm = () => { + return ( +
+
+ Title: + + Image: + + Description + + +
+
+ ) +} + +export default ProjectForm diff --git a/src/layouts/components/StoryForm.js b/src/layouts/components/StoryForm.js new file mode 100644 index 0000000..028f0d6 --- /dev/null +++ b/src/layouts/components/StoryForm.js @@ -0,0 +1,21 @@ +import React from 'react' + +const StoryForm = () => { + return ( +
+
+ Title: + + Image: + + Description + + +
+
+ ) +} + +export default StoryForm diff --git a/src/layouts/components/UserForm.js b/src/layouts/components/UserForm.js new file mode 100644 index 0000000..fed658f --- /dev/null +++ b/src/layouts/components/UserForm.js @@ -0,0 +1,19 @@ +import React from 'react' + +const UserForm = () => { + return ( +
+
+ Username: + + Email: + + Password + + +
+
+ ) +} + +export default UserForm