Skip to content

Commit

Permalink
Feat: implement Featuture without organizing style
Browse files Browse the repository at this point in the history
  • Loading branch information
HFG43 committed Nov 9, 2023
1 parent f745859 commit 53c423d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Components/AddExperience.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ function AddExperience() {
<section className="image-back d-flex-col reserv-back">
<div className="d-flex-col form-cont gap">
<h2 className="title-form title-reserv color">Add a new experince</h2>
<span className="d-flex reserv-desc span-desc">TESTEO</span>
<form className="d-flex-col gap" onSubmit={(ev) => ev.preventDefault()}>
<span id="message-error" />
<input id="name" type="text" placeholder="Experience Name" className="form-input reserv-input" required />
Expand Down
5 changes: 5 additions & 0 deletions src/Redux/Slices/ExperiencesSlice.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ export const getExperiencesData = createAsyncThunk(
},
);

// CREADA PARA TESTEAR EL FEATURE
export const createExperience = () => {
console.log('Tests');
};

const experiencesSlice = createSlice({
name: 'experiences',
initialState,
Expand Down

0 comments on commit 53c423d

Please sign in to comment.