You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
686 B
30 lines
686 B
import "./global.scss"; |
|
import Search from "./components/Search"; |
|
import PopularSearch from "./components/PopularSearch"; |
|
import Input from "./components/Input"; |
|
import Country from "./components/SelectSearch"; |
|
import SelectCheckbox from "./components/SelectCheckbox"; |
|
|
|
function App() { |
|
return ( |
|
<div className="app"> |
|
<Search /> |
|
<hr /> |
|
<PopularSearch /> |
|
<hr /> |
|
<Input |
|
label="نام و نام خانوادگی" |
|
lang="fa" |
|
status={false} |
|
maxLength={30} |
|
message={"اشتباه است."} |
|
/> |
|
<hr /> |
|
<Country lang="fa" /> |
|
<hr /> |
|
<SelectCheckbox /> |
|
</div> |
|
); |
|
} |
|
|
|
export default App;
|
|
|