Skip to content
Snippets Groups Projects
Select Git revision
  • 5b855a2392f7991f4a42a3c40d95cda5aac9c5e9
  • master default protected
  • Patrik
  • own-vm
  • Mike
5 results

.magic_ssh_config

Blame
  • Forked from Tóth Miklós Tibor / Linux presentation 2020
    Source project has a limited visibility.
    Trainers.js 645 B
    import React, { Component } from 'react';
    import { Container, Header, Segment } from 'semantic-ui-react';
    
    export default class Trainers extends Component {
      render() {
        return (
          <div>
            <Segment inverted textAlign='center' vertical>
              <Container>
                <Header
                  as='h1'
                  content='Képzők - Hamarosan'
                  inverted
                  style={{
                    fontSize: '3em',
                    fontWeight: 'normal',
                    marginBottom: 0,
                    marginTop: '0.5em',
                  }}
                />
              </Container>
            </Segment>
          </div>
        );
      }
    }