You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { Text, View } from "@nodegui/react-nodegui";
|
|
|
|
import React from "react";
|
|
|
|
const dogImg = require("./dog");
|
|
|
|
|
|
|
|
export function StepOne() {
|
|
|
|
return (
|
|
|
|
<View style={containerStyle}>
|
|
|
|
<Text wordWrap={true}>
|
|
|
|
Edit App.tsx to make changes to this screen. Then come back to see your
|
|
|
|
changes. Changes should reflect live thanks to Hot Reloading. 🔥
|
|
|
|
</Text>
|
|
|
|
<Text>
|
|
|
|
{`
|
|
|
|
<p style="color: rgb(255,72,38);">
|
|
|
|
<center>
|
|
|
|
<img src="${dogImg}" alt="doggy" />
|
|
|
|
</center>
|
|
|
|
<center>You can even use <i><strong>Rich Html</strong></i> text like this if you want 😎.</center>
|
|
|
|
</p>
|
|
|
|
<hr />
|
|
|
|
`}
|
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const containerStyle = `
|
|
|
|
margin-horizontal: 20px;
|
|
|
|
padding-horizontal: 10px;
|
|
|
|
`;
|