introducing profile Select

This commit is contained in:
Antoine M 2024-01-31 19:42:08 +01:00
parent 547ba3fdd7
commit 8f1c2495fc

View File

@ -0,0 +1,10 @@
import React from "react";
import { v4 as uuidv4 } from "uuid";
export default function CountrySelect() {
return (
<select className='profile-select'>
<option className='country-select__country-list'>salut</option>;
</select>
);
}