0% found this document useful (0 votes)
5 views1 page

Coding Note

The document provides instructions for setting up a coding environment for a financial project using Yarn and Git. It includes commands for starting the project, handling errors, and managing source control operations. Additionally, it contains a code snippet for rendering tasks organized by day with React components.

Uploaded by

TUSIIME
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Coding Note

The document provides instructions for setting up a coding environment for a financial project using Yarn and Git. It includes commands for starting the project, handling errors, and managing source control operations. Additionally, it contains a code snippet for rendering tasks organized by day with React components.

Uploaded by

TUSIIME
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

.

open coding folder:


- cd ./my-finiancial
- yarn
- yarn start
if error, run this:
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass

w: {
flexDirection: "row",
justifyContent: "space-between",
alignItems: "center",

https://react.dev/reference/react/useState

* Git:
1, select files you want to push in Source Control tab
2, type:
git commit -m "your message"
git push

3, to get latest update, type:


git pull

{Array name.map((box) => {

return (

const priorites = [
{
day: "Monday",
tasks: [
{ name: "", type: "personal" },
{ name: "", type: "private" },
{ name: "", type: "secret" },
]
},
{
day: "Tues",
tasks: [
{ name: "", type: "private" },
{ name: "", type: "private" },
{ name: "", type: "secret" },
]
}
]

<View style={{ height: 100, width: 5 }}>


<DashedLine isHorizontal={false} color="grey"
lineLength={100} />
</View>

You might also like