Skip to content
This repository has been archived by the owner on Mar 31, 2021. It is now read-only.

Update plugin name and adjust dependency version #3

Merged
merged 37 commits into from
Oct 9, 2019
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
56976c4
Add files via upload
Francydijesi May 29, 2019
730e195
Removed Config file
Francydijesi Jun 25, 2019
796f189
Added copyright and fixed build errors
Jun 25, 2019
01adf39
Create THIRD-PARTY
Francydijesi Jun 25, 2019
72f1c8b
Update THIRD-PARTY
Francydijesi Jun 26, 2019
4b0d658
Removed sorting in nested tables
Jun 26, 2019
8f0bd43
Merge branch 'develop' of https://github.com/opendistro-for-elasticse…
Jun 26, 2019
89e563d
Update THIRD-PARTY
Francydijesi Jun 27, 2019
22ba3fe
Update THIRD-PARTY
Francydijesi Jun 27, 2019
c492337
Update package.json
Francydijesi Jun 27, 2019
e504676
Update app.js
Francydijesi Jul 2, 2019
342879a
Update README.md
Francydijesi Jul 3, 2019
d7be5b4
Changed package name
Francydijesi Jul 3, 2019
8884ab4
Test
Jul 8, 2019
55584da
Third version
Aug 13, 2019
7417c10
Delete app.css
Francydijesi Aug 13, 2019
6c07c7f
Renamed folders and added tests
Aug 14, 2019
f318a62
Delete yarn.lock
Francydijesi Aug 14, 2019
4792c43
Removed duplicated folders
Aug 14, 2019
aa881be
Delete main.tsx
Francydijesi Aug 15, 2019
26a8f3e
Added main file
Aug 15, 2019
f72cb99
Dummy change
Aug 15, 2019
d9c208b
Delete Header.tsx
Francydijesi Aug 15, 2019
f75eb28
Adding Header
Aug 15, 2019
30d6f6c
Removed QueryResultsContainer and QueryResultsBodyContainer, moved fu…
Aug 20, 2019
1cd3005
Removed hacks file
Aug 20, 2019
8b2f1d6
Refactoring
Aug 21, 2019
5c00e4f
Addressed comments on first PR
Aug 31, 2019
19a5ae3
Removed commented line, added missing types in utils
Aug 31, 2019
9be14d1
Added column id for default sorting
Sep 4, 2019
9e9a761
Added copyright in app.js
Sep 4, 2019
86c85c1
Added unit tests
Sep 13, 2019
35d1177
Added unit tests
Oct 8, 2019
6304cb8
Delete index.js
Francydijesi Oct 8, 2019
ea3755c
Updated package.json
Oct 9, 2019
a94df70
Merge branch 'feature-a' of https://github.com/Francydijesi/sql-kiban…
Oct 9, 2019
55e9c60
Merge branch 'pr' into feature-a
Francydijesi Oct 9, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding Header
Francesca Paoletti committed Aug 15, 2019
commit f75eb28d43e388c7ec6ba512a9d7ff192651ecca
28 changes: 28 additions & 0 deletions public/components/Header/Header.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/

import React from 'react';
import { EuiHorizontalRule } from '@elastic/eui';

const Header = () => {
return <div>
<div className="sql-console-page-header">
SQL console
</div>
<EuiHorizontalRule margin="none" />
</div>;
};

export default Header;