<ShellBar
logo={<img src="logo192.png" />}
primaryTitle="Sample Application with UI5 Web Components for react"
/>
<Card
heading="UI5 fundamentals"
style={{ width: "350px", ...spacing.sapUiContentPadding }}
>
<Avatar
style={{ width: "400px", height: "200px" }}
image="https://imgproxy.xopic.de/hkHnHVJVAo9b_pI6VL7R98CSS1a39xnsSuPAwPIz4Fg/fit/600/300/ce/false/aHR0cHM6Ly9zMy54/b3BpYy5kZS9vcGVu/c2FwLXB1YmxpYy9j/b3Vyc2VzLzVidzBO/ZWFxemJXTHhaaTRu/V2FBSi92aXN1YWxf/djEuanBn.jpg"
shape="Square"
size="XL"
/>
<List>
<Text style={spacing.sapUiContentPadding}>
This course teaches about fundamentals of UI5 components which can
be used to develop your application. You will learn about
different components in this course
</Text>
<StandardListItem
info="in progress"
infoState={ValueState.Warning}
style={{ height: "80px" }}
>
<FlexBox direction={FlexBoxDirection.Column}>
<ProgressIndicator value={89} valueState={ValueState.Success} />
</FlexBox>
</StandardListItem>
</List>
<Button
className=""
icon="employee"
onClick={function noRefCheck() {}}
slot=""
style={{}}
tooltip=""
>
Enter course
</Button>
</Card>
<FlexBox
justifyContent={FlexBoxJustifyContent.Center}
wrap={FlexBoxWrap.Wrap}
style={spacing.sapUiContentPadding}
/>
function App() {
return (
<ThemeProvider>
<MyApp />
</ThemeProvider>
);
}
export default App;
import React from "react";
import {
Avatar,
Card,
Text,
ShellBar,
List,
StandardListItem,
ValueState,
ProgressIndicator,
FlexBox,
FlexBoxJustifyContent,
FlexBoxWrap,
FlexBoxDirection,
} from "@ui5/webcomponents-react";
import { spacing } from "@ui5/webcomponents-react-base";
import "@ui5/webcomponents-icons/dist/list.js";
import { Button } from "@ui5/webcomponents-react/lib/Button";
export function MyApp() {
return (
<div>
<ShellBar
logo={<img src="logo192.png" />}
primaryTitle="Sample Application with UI5 Web Components for react"
></ShellBar>
<FlexBox
justifyContent={FlexBoxJustifyContent.Center}
wrap={FlexBoxWrap.Wrap}
style={spacing.sapUiContentPadding}
>
<Card
heading="UI5 fundamentals"
style={{ width: "350px", ...spacing.sapUiContentPadding }}
>
<Avatar
style={{ width: "400px", height: "200px" }}
image="https://imgproxy.xopic.de/hkHnHVJVAo9b_pI6VL7R98CSS1a39xnsSuPAwPIz4Fg/fit/600/300/ce/false/aHR0cHM6Ly9zMy54/b3BpYy5kZS9vcGVu/c2FwLXB1YmxpYy9j/b3Vyc2VzLzVidzBO/ZWFxemJXTHhaaTRu/V2FBSi92aXN1YWxf/djEuanBn.jpg"
shape="Square"
size="XL"
/>
<List>
<Text style={spacing.sapUiContentPadding}>
This course teaches about fundamentals of UI5 components which can
be used to develop your application. You will learn about
different components in this course
</Text>
<StandardListItem
info="in progress"
infoState={ValueState.Warning}
style={{ height: "80px" }}
>
<FlexBox direction={FlexBoxDirection.Column}>
<ProgressIndicator value={89} valueState={ValueState.Success} />
</FlexBox>
</StandardListItem>
</List>
<Button
className=""
icon="employee"
onClick={function noRefCheck() {}}
slot=""
style={{}}
tooltip=""
>
Enter course
</Button>
</Card>
<Card
heading="React Native App Development"
style={{ width: "350px", ...spacing.sapUiContentPadding }}
>
<Avatar
style={{ width: "400px", height: "200px" }}
image="https://imgproxy.xopic.de/AtO16nRekPG_IiJFQtisLfgjygcaEvgrge_2_xdimpM/fit/600/300/ce/false/aHR0cHM6Ly9zMy54/b3BpYy5kZS9vcGVu/c2FwLXB1YmxpYy9j/b3Vyc2VzLzdqUWVQ/Rklxb3c5NXd1NlVD/bUhmS2MvdmlzdWFs/X3YyLmpwZw.jpg"
shape="Square"
size="XL"
/>
<Text style={spacing.sapUiContentPadding}>
This course is about fundamentals of React Native. Its an
open-source mobile application framework.In this course you will
develop an android application with the instrutor.
</Text>
<List>
<StandardListItem
info="in progress"
infoState={ValueState.Warning}
style={{ height: "80px" }}
>
<FlexBox direction={FlexBoxDirection.Column}>
<ProgressIndicator value={10} valueState={ValueState.Success} />
</FlexBox>
</StandardListItem>
</List>
<Button
className=""
icon="employee"
onClick={function noRefCheck() {}}
slot=""
style={{}}
tooltip=""
>
Enter course
</Button>
</Card>
<Card
heading="Kubernetes and Docker essentials"
style={{ width: "350px", ...spacing.sapUiContentPadding }}
>
<Avatar
style={{ width: "400px", height: "200px" }}
image="https://imgproxy.xopic.de/cDTLl5fXaXcrOHPhSd0FawuLBUVykpEZi0I-275Qb5c/fit/600/300/ce/false/aHR0cHM6Ly9zMy54/b3BpYy5kZS9vcGVu/c2FwLXB1YmxpYy9j/b3Vyc2VzLzJHQjRO/UVBzNk5HbVRoWVpn/cU5hc2gvdmlzdWFs/X3YxLmpwZw.jpg"
shape="Square"
size="XL"
/>
<Text style={spacing.sapUiContentPadding}>
Kubernetes is a container management system to manage a
containerized application in various environments. In this course
you will get hands on experience in deploying an application.
</Text>
<List>
<StandardListItem
info="in progress"
infoState={ValueState.Warning}
style={{ height: "80px" }}
>
<FlexBox direction={FlexBoxDirection.Column}>
<ProgressIndicator value={50} valueState={ValueState.Success} />
</FlexBox>
</StandardListItem>
</List>
<Button
className=""
icon="employee"
onClick={function noRefCheck() {}}
slot=""
style={{}}
tooltip=""
>
Enter course
</Button>
</Card>
</FlexBox>
</div>
);
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
23 | |
11 | |
10 | |
9 | |
8 | |
6 | |
6 | |
6 | |
5 | |
5 |