Skip to content

Web-Totals/web-totals

 
 

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

About

Web totals, Share all about web development

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 39.5%
  • CSS 36.4%
  • TypeScript 14.1%
  • MDX 10.0%