Skip to content

Commit

Permalink
schedule_search
Browse files Browse the repository at this point in the history
  • Loading branch information
shaankhosla committed Sep 23, 2023
1 parent 89c5f15 commit a2b518f
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions packages/desktop-client/src/components/schedules/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,22 @@ export default function Schedules() {

return (
<Page title="Schedules">
<View style={{ alignItems: 'flex-end' }}>
<Search
placeholder="Filter schedules…"
value={filter}
onChange={setFilter}
/>
<View
style={{
flexDirection: 'row',
alignItems: 'center',
padding: '0 0 15px',
}}
>
<View
style={{ flex: 1, flexDirection: 'row', justifyContent: 'flex-end' }}
>
<Search
placeholder="Filter schedules…"
value={filter}
onChange={setFilter}
/>
</View>
</View>

<View
Expand Down

0 comments on commit a2b518f

Please sign in to comment.