-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHome.tsx
45 lines (37 loc) · 1.32 KB
/
Home.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// SPDX-License-Identifier: Apache-2.0
//
// SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
import { Icon } from '@blueprintjs/core';
import { IconNames } from '@blueprintjs/icons';
import LocalFolderSelector from '../components/report-selection/LocalFolderSelector';
import RemoteSyncConfigurator from '../components/report-selection/RemoteSyncConfigurator';
import 'styles/routes/Home.scss';
function Home() {
return (
<div className='splash-screen home'>
<div className='folder-picker-options'>
<fieldset>
<legend>Local folder</legend>
<Icon
icon={IconNames.FOLDER_OPEN}
size={150}
/>
<div className='folder-picker-wrapper'>
<LocalFolderSelector />
</div>
</fieldset>
<fieldset>
<legend>Remote Sync</legend>
<Icon
icon={IconNames.CLOUD}
size={150}
/>
<div className='folder-picker-wrapper'>
<RemoteSyncConfigurator />
</div>
</fieldset>
</div>
</div>
);
}
export default Home;