Skip to content
View ilyamkin's full-sized avatar
🚀
Shipping
🚀
Shipping
Block or Report

Block or report ilyamkin

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. freenowtech/uniform freenowtech/uniform Public

    Component for creating dynamic forms

    JavaScript 9

  2. dev-to-js dev-to-js Public

    🌐 A universal client for the Dev.to API written in Typescript

    TypeScript 35 9

  3. Load on click Load on click
    1
    const App = () => {
    2
      const [prefetchedIndexes, setPrefetchedIndexes] = useState();
    3
    
                  
    4
      return (
    5
        <>
  4. Render with Suspense Render with Suspense
    1
    const IndexList = ({ prefetchedIndexes }) => {
    2
      const data = usePrefetchedQuery(prefetchedIndexes);
    3
    
                  
    4
      return data.majorIndexesList.map(index => (
    5
        <div key={index.ticker}>
  5. prefetch-query prefetch-query
    1
    function wrapPromise(promise) {
    2
      let status = "pending";
    3
      let result;
    4
      let suspender = promise.then(
    5
        r => {