Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into refactor/tabs-structure
Browse files Browse the repository at this point in the history
  • Loading branch information
IdoBouskila committed Nov 30, 2024
2 parents 9a01e16 + 43e87e0 commit 377bc7c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/client-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
with:
node-version: '18'

# Install dependencies for the server as well, because the client depends on it (tRPC)
- name: Install dependencies (server)
working-directory: ./server
run: yarn install

- name: Install dependencies (client)
working-directory: ./client
run: yarn install
Expand Down
3 changes: 3 additions & 0 deletions client/src/components/dashboard.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import Map from './map';
import SearchBar from './search-bar/search-bar';
import { PiWind, PiEyeLight, PiSunLight, PiDropLight, PiWindLight, PiThermometerSimple } from 'react-icons/pi';

const Dashboard = () => {
return (
<div className='dashboard'>
<SearchBar />

<div className='current-weather-container'>
<div className='title-container'>
<h1>Current Weather</h1>
Expand Down

0 comments on commit 377bc7c

Please sign in to comment.