Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

hunghg255/web-totals-old

Repository files navigation

Share all about web development

Installation

npm install

Local Development

npm start

Build

npm build

Contributors

This project exists thanks to all the people who contribute.

How to write markdown

Embed Expo

```SnackPlayer name=Hello%20World
import React from 'react';
import { Text, View } from 'react-native';

const YourApp = () => {
  return (
    <View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
      <Text>Try editing me! 🎉</Text>
    </View>
  );
}

export default YourApp;```

Embed StackBlitz

<Stackblitz name={'react-ts-mdxcmx'} />

Live code: Add block with keywork live

```tsx live
function Clock(props) {
  const [date, setDate] = useState(new Date());
  useEffect(() => {
    var timerID = setInterval(() => tick(), 1000);

    return function cleanup() {
      clearInterval(timerID);
    };
  });

  function tick() {
    setDate(new Date());
  }

  return (
    <div>
      <h2>It is {date.toLocaleTimeString()}.</h2>
    </div>
  );
}```

Live code with Mutil components

```jsx live noInline
const project = 'Docusaurus';

const Greeting = () => <p>Hello {project}!</p>;

render(<Greeting />);```

Mermaid: add block with keyword mermaid

```mermaid
graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;```

npm2yarn

```bash npm2yarn
npm install rc-select```

About

Buy Me A Coffee

Gia Hung – hung.hg