File size: 459 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// @flow
import React from 'react';
import { SERVER_URL } from 'src/api/constants';
import { OutlineButton } from 'src/components/button';
import { LogoutWrapper } from '../style';
import { SectionCard } from 'src/components/settingsViews/style';

export default () => (
  <LogoutWrapper>
    <SectionCard>
      <OutlineButton href={`${SERVER_URL}/auth/logout`} target="_self">
        Log out
      </OutlineButton>
    </SectionCard>
  </LogoutWrapper>
);